jcmayoral / msdocs-django-postgresql-sample-app

A sample Django app using PostgreSQL for the Azure App Service Web App + Database tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deploy a Python (Django) web app with PostgreSQL in Azure

This is a Python web app using the Django framework and the Azure Database for PostgreSQL relational database service. The Django app is hosted in a fully managed Azure App Service. This app is designed to be be run locally and then deployed to Azure. For more information on how to use this web app, see the tutorial Deploy a Python (Django or Flask) web app with PostgreSQL in Azure.

If you need an Azure account, you can create on for free.

A Flask sample application is also available for the article at https://github.com/Azure-Samples/msdocs-flask-postgresql-sample-app.

Requirements

The requirements.txt has the following packages:

Package Description
Django Web application framework.
pyscopg2-binary PostgreSQL database adapter for Python.
python-dotenv Read key-value pairs from .env file and set them as environment variables. In this sample app, those variables describe how to connect to the database locally.

This package is used in the manage.py file to load environment variables.
whitenoise Static file serving for WSGI applications, used in the deployed app.

This package is used in the azureproject/production.py file, which configures production settings.

About

A sample Django app using PostgreSQL for the Azure App Service Web App + Database tutorial

License:MIT License


Languages

Language:Python 51.8%Language:HTML 47.2%Language:JavaScript 0.7%Language:Shell 0.3%