page_type: sample languages:
This project deploys a web application for a space travel agency using Django. The application can be deployed to Azure with Azure Container Apps using the Azure Developer CLI.
This project has Dev Container support, so it will be setup automatically if you open it in Github Codespaces or in local VS Code with the Dev Containers extension.
If you're not using one of those options for opening the project, then you'll need to:
export POSTGRES_HOST=localhost
export POSTGRES_PORT=5432
export POSTGRES_DATABASE=<YOUR DATABASE>
export POSTGRES_USERNAME=<YOUR USERNAME>
export POSTGRES_PASSWORD=<YOUR PASSWORD>
Create a Python virtual environment and activate it.
Install production requirements:
python3 -m pip install -r src/requirements.txt
Apply database migrations and seed initial data:
python3 src/manage.py migrate
python3 src/manage.py loaddata src/seed_data.json
If you're running the app inside VS Code or GitHub Codespaces, you can use the "Run and Debug" button to start the app.
python3 src/manage.py runserver 8000
This app comes with the built-in Django admin interface.
python3 src/manage.py createsuperuser
Restart the server and navigate to "/admin"
Login with the superuser credentials.
Install the development requirements:
python3 -m pip install -r requirements-dev.txt
python3 -m playwright install chromium --with-deps
Run the tests:
python3 -m pytest
This repo is set up for deployment on Azure via Azure Container Apps.
Steps for deployment:
Sign up for a free Azure account and create an Azure Subscription.
Install the Azure Developer CLI. (If you open this repository in Codespaces or with the VS Code Dev Containers extension, that part will be done for you.)
Login to Azure:
azd auth login
Provision and deploy all the resources:
azd up
It will prompt you to provide an azd
environment name (like "myapp"), select a subscription from your Azure account, and select a location (like "eastus"). Then it will provision the resources in your account and deploy the latest code. If you get an error with deployment, changing the location can help, as there may be availability constraints for some of the resources.
When azd
has finished deploying, you'll see an endpoint URI in the command output. Visit that URI, and you should see the front page of the app! 🎉
When you've made any changes to the app code, you can just run:
azd deploy
This project includes a Github workflow for deploying the resources to Azure on every push to main. That workflow requires several Azure-related authentication secrets to be stored as Github action secrets. To set that up, run:
azd pipeline config