[ Prev ] [ Index ] [ Next ]

Directory structure

Created Dienstag 26 November 2019


Project

Created with
$ django-admin startproject mysite


mysite/ # This is the project root directory. You can change the name to what ever you like

manage.py
mysite/ # Project python package
init.py
settings.py # Settings/configuration for this Django project
urls.py # Starting point to your projects url hierarchy
wsgi.py # Entry point for WSGI server


App

Created with:
$ py manage.py startapp polls


<App name>/

init.py
admin.py
apps.py
migrations/
init.py
models.py
tests.py
urls.py # Starting point to your apps url hierarchy
views.py