From 3d33a8fd0eec5e6a1c28e721b0b8ea61da38a163 Mon Sep 17 00:00:00 2001 From: Petr Gazarov Date: Wed, 18 Oct 2023 07:47:50 -0700 Subject: [PATCH] Readme: add release links --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2cce542..bb195f1 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,8 @@ Infrastructure As Natural Language Salami is a declarative domain-specific language for cloud infrastructure based on natural language descriptions. Salami compiler uses GPT4 to convert the natural language to Terraform code. You can think of Salami as writing documentation for each cloud resource object, and letting the compiler take care of converting that to IaC (Infrastructure as Code). -Demo: - - +**[Short demo video](https://youtu.be/ej629E0WOIY)** | +**[Release blog post](https://www.petrgazarov.com/posts/infrastructure-as-natural-language)** ## 🎨 Design @@ -54,7 +53,7 @@ For more examples, see the `examples` directory. | 2 | variable type | string | Yes | `string`, `number`, `boolean` | | 3 | default | any | No | `8080`, `logs_bucket_1fdretbnHUdfn` | -### The lock file +### Lock file Salami compiler generates a lock file that includes parsed Salami objects and the resulting Terraform code. The lock file is used to determine which Salami objects have changed since the last compilation. Unchanged objects are not sent to LLM, which makes the compilation process much faster.