this application allows the user to create a note, see the note, delete it or modify the note
the following prerequisites are required for the project to work
- any operating system
- python 3.10 or higher
- sqlite3 installed
- clone the project
git clone https://github.com/blackwakhu/note-taking-app-django.git
- install all the requirements
pip install -r requirements.txt
- navigate to the project folder
cd note-taking-app-django
- make migrations
python manage.py makemigrations note_taker
- make sql migrations
python manage.py sqlmigrate note_taker 0001
- run migrations
python manage.py migrate