├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github └── dependabot.yml ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── hello ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ └── hello │ │ └── site.css ├── templates │ └── hello │ │ ├── about.html │ │ ├── contact.html │ │ ├── hello_there.html │ │ ├── home.html │ │ ├── layout.html │ │ └── log_message.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt ├── uwsgi.ini └── web_project ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/SECURITY.md -------------------------------------------------------------------------------- /hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/admin.py -------------------------------------------------------------------------------- /hello/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/apps.py -------------------------------------------------------------------------------- /hello/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/forms.py -------------------------------------------------------------------------------- /hello/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/migrations/0001_initial.py -------------------------------------------------------------------------------- /hello/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/models.py -------------------------------------------------------------------------------- /hello/static/hello/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/static/hello/site.css -------------------------------------------------------------------------------- /hello/templates/hello/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/about.html -------------------------------------------------------------------------------- /hello/templates/hello/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/contact.html -------------------------------------------------------------------------------- /hello/templates/hello/hello_there.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/hello_there.html -------------------------------------------------------------------------------- /hello/templates/hello/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/home.html -------------------------------------------------------------------------------- /hello/templates/hello/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/layout.html -------------------------------------------------------------------------------- /hello/templates/hello/log_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/templates/hello/log_message.html -------------------------------------------------------------------------------- /hello/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/tests.py -------------------------------------------------------------------------------- /hello/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/urls.py -------------------------------------------------------------------------------- /hello/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/hello/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=3.1.0 2 | pytz==2020.5 3 | -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /web_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/web_project/asgi.py -------------------------------------------------------------------------------- /web_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/web_project/settings.py -------------------------------------------------------------------------------- /web_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/web_project/urls.py -------------------------------------------------------------------------------- /web_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/python-sample-vscode-django-tutorial/HEAD/web_project/wsgi.py --------------------------------------------------------------------------------