A minimal web application to create and manage notes using Python Django.
- Add new notes with a title and content
- View all notes
- Delete notes
- Clean Git branching workflow
git clone https://github.com/<your-username>/notes-keeper-django.git
cd notes-keeper-django
python -m venv env
env\Scripts\activate
pip install django
python manage.py makemigrations
python manage.py migrate
python manage.py runserver