From a99fdaf1f9ab769e59bbe567f6e7e76685b8bfec Mon Sep 17 00:00:00 2001 From: Tine Date: Fri, 1 Mar 2024 15:14:57 +0100 Subject: [PATCH] docs: add readme --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1160747 --- /dev/null +++ b/README.md @@ -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 +```