Example of deploying Python app to Azure
This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Tine 1cfa001dec
fix: make postgresql accessible
2024-03-08 12:20:20 +01:00
src feat: working example 2024-03-01 22:05:49 +01:00
terraform fix: make postgresql accessible 2024-03-08 12:20:20 +01:00
.envrc first commit 2024-03-01 15:11:34 +01:00
.gitignore first commit 2024-03-01 15:11:34 +01:00
Dockerfile feat: working example 2024-03-01 22:05:49 +01:00
README.md docs: dependencies 2024-03-02 10:35:31 +01:00
devbox.json feat: working example 2024-03-01 22:05:49 +01:00
devbox.lock feat: working example 2024-03-01 22:05:49 +01:00
example.env first commit 2024-03-01 15:11:34 +01:00
justfile docs: dependencies 2024-03-02 10:35:31 +01:00

README.md

python-azure-example

Just an example of a way to deploy Python app to Azure using Terraform.

Development

Dependencies

# Configure
cp example.env .env

# Start local dev
just dependencies
just run

# Provision infrastructure
just deploy

## RELEASE PROCESS
# Release new code
just release
# At this point, you have to modify .env to point to new image
# And then we can deploy the new image.
just deploy