Skip to content

CoderSales/django-app-from-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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