Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 370 Bytes

File metadata and controls

17 lines (13 loc) · 370 Bytes

django-app-from-tutorial

Procedure

  • open folder
  • start virtual environment
  • Install Django
  • startproject mysite
  • startapp website
  • add website to INSTALLED_APPS in settings.py
  • urls.py
  • cd mysite
  • python manage.py runserver

References