A simple introduction to Django, a project that has a single application to render multiple HTML pages.
- Create the venv.
python -m venv .- Activate the venv.
source bin/activateUsing pip:
pip install djangoCollect static files
python manage.py collectstaticMigrate database models
python manage.py makemigrations
python manage.py migrateRun the development server
python manage.py runserver