├── .azure-deploy.yml ├── .azure-pipelines.yml ├── .gitignore ├── .vscode └── extensions.json ├── Procfile ├── README.md ├── app.json ├── bin ├── as_settings.py ├── createdb.py ├── getenv.sh └── shared.py ├── docs └── azure │ ├── 1-vscode.md │ ├── 2-appservice.md │ ├── 3-pipelines.md │ ├── 4-functions.md │ └── img │ ├── pipeline-triggers.png │ └── pipeline-variables.png ├── env-example ├── manage.py ├── requirements.txt ├── restore.sh ├── runtime.txt ├── snippets ├── __init__.py ├── admin.py ├── apps.py ├── fixtures │ ├── snippets.json │ └── users.json ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── tests.py ├── urls.py └── views.py └── tutorial ├── __init__.py ├── azure.py ├── settings.py ├── urls.py └── wsgi.py /.azure-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/.azure-deploy.yml -------------------------------------------------------------------------------- /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn tutorial.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/app.json -------------------------------------------------------------------------------- /bin/as_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/bin/as_settings.py -------------------------------------------------------------------------------- /bin/createdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/bin/createdb.py -------------------------------------------------------------------------------- /bin/getenv.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | grep -v '^#' .env | xargs 3 | -------------------------------------------------------------------------------- /bin/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/bin/shared.py -------------------------------------------------------------------------------- /docs/azure/1-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/1-vscode.md -------------------------------------------------------------------------------- /docs/azure/2-appservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/2-appservice.md -------------------------------------------------------------------------------- /docs/azure/3-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/3-pipelines.md -------------------------------------------------------------------------------- /docs/azure/4-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/4-functions.md -------------------------------------------------------------------------------- /docs/azure/img/pipeline-triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/img/pipeline-triggers.png -------------------------------------------------------------------------------- /docs/azure/img/pipeline-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/docs/azure/img/pipeline-variables.png -------------------------------------------------------------------------------- /env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/env-example -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/requirements.txt -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/restore.sh -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.3 2 | -------------------------------------------------------------------------------- /snippets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/admin.py -------------------------------------------------------------------------------- /snippets/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/apps.py -------------------------------------------------------------------------------- /snippets/fixtures/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/fixtures/snippets.json -------------------------------------------------------------------------------- /snippets/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/fixtures/users.json -------------------------------------------------------------------------------- /snippets/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/migrations/0001_initial.py -------------------------------------------------------------------------------- /snippets/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/models.py -------------------------------------------------------------------------------- /snippets/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/permissions.py -------------------------------------------------------------------------------- /snippets/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/serializers.py -------------------------------------------------------------------------------- /snippets/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/tests.py -------------------------------------------------------------------------------- /snippets/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/urls.py -------------------------------------------------------------------------------- /snippets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/snippets/views.py -------------------------------------------------------------------------------- /tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/tutorial/azure.py -------------------------------------------------------------------------------- /tutorial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/tutorial/settings.py -------------------------------------------------------------------------------- /tutorial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/tutorial/urls.py -------------------------------------------------------------------------------- /tutorial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/rest-framework-tutorial/HEAD/tutorial/wsgi.py --------------------------------------------------------------------------------