Skip to content

Instantly share code, notes, and snippets.

@selynna
Last active April 29, 2019 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save selynna/00d5a74a08341a9a8af09ecee935b70d to your computer and use it in GitHub Desktop.
Save selynna/00d5a74a08341a9a8af09ecee935b70d to your computer and use it in GitHub Desktop.
django_azure_demo/
|_ django_azure_demo/
  |_ __init__.py
  |_ settings.py
  |_ urls.py
  |_ wsgi.py
|_ manage.py
|_ db.sqlite3
manage.py: file to run commands like running the server, create migrations, etc. 
__init__.py: file that tells Python that this folder is a Python package.
settings.py: file containing Django project configuration
urls.py: file containing routes
wsgi.py: file used for deployment (don't worry about it for now!) 
db.sqlite3: database file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment