Note_tracker is a Django-based web application for managing and tracking notes.
Follow the steps below to set up and run the project locally.
git clone <repository_url>
cd Note_trackerpython -m venv env-
Windows:
env\Scripts\activate
-
Linux / macOS:
source env/bin/activate
pip install -r requirements.txtpython manage.py makemigrations
python manage.py migratepython manage.py createsuperuserFollow the prompts to set up admin credentials.
python manage.py runserverThe project will be available at:
http://127.0.0.1:8000/
You can access the Django admin panel at:
http://127.0.0.1:8000/admin/
Log in using the superuser credentials you created earlier.
- Python
- Django
- SQLite (default)
- Make sure you are using Python 3.x
- Always activate the virtual environment before running the project
Happy c