├── .env.sample.b2c ├── .env.sample.entra-id ├── .env.sample.external-id ├── .env.sample.external-id-custom-domain ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── codeql.yml ├── .gitignore ├── .vscode └── extensions.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── auto-config.json ├── manage.py ├── mysite ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── requirements.txt ├── static └── topology.png ├── templates ├── display.html └── index.html ├── tests ├── __init__.py └── test_views.py └── tox.ini /.env.sample.b2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.env.sample.b2c -------------------------------------------------------------------------------- /.env.sample.entra-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.env.sample.entra-id -------------------------------------------------------------------------------- /.env.sample.external-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.env.sample.external-id -------------------------------------------------------------------------------- /.env.sample.external-id-custom-domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.env.sample.external-id-custom-domain -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/README.md -------------------------------------------------------------------------------- /auto-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/auto-config.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/mysite/asgi.py -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/mysite/views.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/static/topology.png -------------------------------------------------------------------------------- /templates/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/templates/display.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/templates/index.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-webapp-django/HEAD/tox.ini --------------------------------------------------------------------------------