/first-django-app

Results of the "Writing your first Django app" series on djangoproject.com.

Primary LanguagePythonMIT LicenseMIT

First Django App

Results of the Writing your first Django app series on djangoproject.com, as of Djano 1.11:

  1. Part 1 - 8261c24
  2. Part 2 - bcf9e99
  3. Part 3 - 8f5eefb
  4. Part 4 - cc1424f
  5. Part 5 - 050b465
  6. Part 6 - 2645464
  7. Part 7 - 12d9a73

Installation

Requirements

  • Python 3+
  • Pipenv
  • Django 1.11+

Steps

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

Settings

The default login and password for the admin site is admin:admin.