├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── LICENSE-CODE ├── README.md ├── azure-pipelines.acr.yml ├── azure-pipelines.docker.yml ├── azure-pipelines.yml ├── helloworld ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── test_site.py /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | db.sqlite3 3 | .git 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.acr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/azure-pipelines.acr.yml -------------------------------------------------------------------------------- /azure-pipelines.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/azure-pipelines.docker.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /helloworld/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helloworld/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/helloworld/settings.py -------------------------------------------------------------------------------- /helloworld/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/helloworld/urls.py -------------------------------------------------------------------------------- /helloworld/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/helloworld/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/manage.py -------------------------------------------------------------------------------- /test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-python-django/HEAD/test_site.py --------------------------------------------------------------------------------