docs: add readme

This commit is contained in:
Tine 2024-03-01 15:14:57 +01:00
parent 910af220c6
commit a99fdaf1f9
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw

23
README.md Normal file
View file

@ -0,0 +1,23 @@
# `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 run
# Provision infrastructure
just terraform apply
# Deploy new code
just deploy
```