Skip to content

blackwakhu/note-taking-app-django

Repository files navigation

Note Taking Django App

this application allows the user to create a note, see the note, delete it or modify the note

Project prequisites

the following prerequisites are required for the project to work

  1. any operating system
  2. python 3.10 or higher
  3. sqlite3 installed

How to get the project

  1. clone the project
    git clone https://github.com/blackwakhu/note-taking-app-django.git
    
  2. install all the requirements
    pip install -r requirements.txt
    
  3. navigate to the project folder
    cd note-taking-app-django
  4. make migrations
    python manage.py makemigrations note_taker
  5. make sql migrations
    python manage.py sqlmigrate note_taker 0001
  6. run migrations
    python manage.py migrate