Skip to content

The polls app from the official Django tutorial, that demonstrates how to build data-driven Python apps in Azure App Service.

License

Notifications You must be signed in to change notification settings

poligonosapp/djangoapp

 
 

Repository files navigation

services platforms author
app-service\web,app-service
python
cephalin

Django and PostgreSQL sample for Azure App Service

This samples is a simple Django app that connects to a PostgreSQL database. The sample is used with the following tutorials:

When deployed to Azure App Service, the database connection information is specified via environment variables DBHOST, DBPASS, DBUSER, and DBNAME. This app always uses the default PostgreSQL port. See the tutorials for more information.

Change log

  • 27 Oct 2020: Possible breaking change: removed use of the DJANGO_ENV environment variable to switch between local and production settings. The code instead triggers the selection using the WEBSITE_HOSTNAME environment variable, which is defined when the code is running inside the the Azure App Service container. See manage.py and azuresite/wsgi.py.

  • 12 Oct 2020: BREAKING CHANGE: The DBHOST environment variable is expected to contain only the server name, not the full URL, which is constructed at run time (see azuresite/production.py). Similarly, DBUSER is expected to contain only the user name, not username@servername as before, because using the simpler DBHOST the code can also construct the correct login form at run time (again in azuresite/production.py), avoiding failures that arise when DBUSER lacks the @servername portion.

Contributing

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

The polls app from the official Django tutorial, that demonstrates how to build data-driven Python apps in Azure App Service.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 90.3%
  • HTML 7.4%
  • Dockerfile 0.8%
  • Shell 0.5%
  • PowerShell 0.5%
  • Batchfile 0.4%
  • CSS 0.1%