Skip to content

abhijith-07/note-it-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Note it

Note it is a notes application that allows users to create folders and add multiple notes to the corresponding folder.

Screenshots

Screenshot 2023-11-05 at 20-40-47 Note it

Screenshot 2023-11-06 at 19-04-14 Note it

Technologies Used

  • Django Rest Framework
  • ReactJs

Installation

  1. Clone the repository:
git clone https://github.com/abhijith-07/note-it-app.git
  1. Install the required dependencies for the Django backend:
cd note-it-app/backend
pip install -r requirements.txt
  1. Make migrations and migrate the database:
python manage.py makemigrations
python manage.py migrate
  1. Start the Django development server:
python manage.py runserver
  1. Install the required dependencies for the ReactJS frontend:
cd ../frontend
npm install
  1. Start the React development server:
npm start
  1. You can access the application in your web browser at http://localhost:3000