A minimal Django tutorial project to demonstrate basic app structure and workflows.
- Python 3.8+
- pip
- virtualenv (recommended)
- Clone the repo:
git clone https://github.com/dvrkdev/django-tutorial.git
- Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # macOS/Linux venv\Scripts\activate # Windows
- Install dependencies:
pip install -r requirements.txt
- Apply migrations and run the server:
python manage.py migrate python manage.py runserver
- Intended for learning and experimentation.
- Contributions and issues are welcome.
See LICENSE file for details.