Results of the Writing your first Django app series on djangoproject.com, as of Djano 1.11:
- Part 1 - 8261c24
- Part 2 - bcf9e99
- Part 3 - 8f5eefb
- Part 4 - cc1424f
- Part 5 - 050b465
- Part 6 - 2645464
- Part 7 - 12d9a73
- Python 3+
- Pipenv
- Django 1.11+
apt-get install python3 python3-pip
pip install pipenv
git clone https://github.com/cdubz/first-django-app.git
cd first-django-app/
pipenv install --three
pipenv shell
cd mysite
python manage.py runserver
The default login and password for the admin site is admin:admin
.