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.
python-azure-example/README.md
2024-03-02 10:35:31 +01:00

28 lines
568 B
Markdown

# `python-azure-example`
Just an example of a way to deploy Python app to Azure using Terraform.
# Development
### Dependencies
* [devbox](https://www.jetpack.io/devbox)
* [justfile](https://github.com/casey/just) (optional, `devbox run -- just` can be used instead)
```sh
# 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
```