From efec029675cc0662dc67d2d222f1e48326c7c2cf Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Fri, 1 Apr 2022 14:48:45 -0400 Subject: [PATCH] chore(com): add docs for "coder projects update" (#732) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3bffaf166b..07cc17c8b3 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,17 @@ $ coder workspaces create my-first-workspace $ coder ssh my-first-workspace ``` +### Working with Projects + +You can edit the Terraform from a sample project: + +```sh +$ coder projects init +$ cd gcp-linux/ +$ vim main.tf +$ coder projects update gcp-linux +``` + ## Development The code structure is inspired by [Basics of Unix Philosophy](https://homepage.cs.uri.edu/~thenry/resources/unix_art/ch01s06.html) and [Effective Go](https://go.dev/doc/effective_go).