Python Django Web App

Clone the Repository to Local System

git clone https://github.com/Azure-Samples/msdocs-python-django-webapp-quickstart

Go to the application folder:

cd msdocs-python-django-webapp-quickstart

Create a virtual environment for the app:

python3 -m venv .venv
source .venv/bin/activate

Install the dependencies:

pip install -r requirements.txt

Run the app:

python manage.py runserver

Browse to the sample application at http://localhost:8000 in a web browser.

Last updated