Python Django Web App
Clone the Repository to Local System
git clone https://github.com/Azure-Samples/msdocs-python-django-webapp-quickstartGo to the application folder:
cd msdocs-python-django-webapp-quickstartCreate a virtual environment for the app:
python3 -m venv .venvsource .venv/bin/activateInstall the dependencies:
pip install -r requirements.txtRun the app:
python manage.py runserverBrowse to the sample application at http://localhost:8000 in a web browser.
Last updated