Simple Django web application.
- Set up Python environment:
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
pip install django- Run migrations:
python manage.py migrate
python manage.py createsuperuser- Start server:
python manage.py runserverVisit:
- Site: http://localhost:8000
- Admin: http://localhost:8000/admin
- Python 3.8+
- Django 4.2+