This project is a full-stack application that uses React for the frontend and Django for the backend. It includes features such as user registration, note creation, and note deletion.
- Navigate to the backend directory.
- Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
source venv/bin/activate
(Linux/macOS) orvenv\Scripts\activate
(Windows) - Install the requirements:
pip install -r requirements.txt
- Run the server:
python manage.py runserver
- Navigate to the frontend directory.
- Install the dependencies:
npm install
- Start the development server:
npm start
After starting the servers, navigate to http://localhost:3000
in your browser. You can register a new user, create notes, and delete notes.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.