Skip to content

Instantly share code, notes, and snippets.

@giljr
Last active July 26, 2021 19:15
Show Gist options
  • Save giljr/61e33f4fd54d79fb685191ef3fc89914 to your computer and use it in GitHub Desktop.
Save giljr/61e33f4fd54d79fb685191ef3fc89914 to your computer and use it in GitHub Desktop.
django_project_folder.csv
File Description
__init__.py This is a blank Python script that due to its special name it will be treated as a package
asgi.py At a very high-level ASGI is a communication interface between apps and servers
settings.py This is where you will store all your project settings
urls.py This is a Python script that will store all the URL patterns for your project. Meaning diff pages of your web app :)
wsgi.py This is a Python script that acts as the Web Server Gateway Interface. It ll help us to deploy our app to production
manage.py This is a Python script that is associated with many commands as we build our web app!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment