Note it is a notes application that allows users to create folders and add multiple notes to the corresponding folder.
- Django Rest Framework
- ReactJs
- Clone the repository:
git clone https://github.com/abhijith-07/note-it-app.git
- Install the required dependencies for the Django backend:
cd note-it-app/backend
pip install -r requirements.txt
- Make migrations and migrate the database:
python manage.py makemigrations
python manage.py migrate
- Start the Django development server:
python manage.py runserver
- Install the required dependencies for the ReactJS frontend:
cd ../frontend
npm install
- Start the React development server:
npm start
- You can access the application in your web browser at
http://localhost:3000