From 18dcf42b0f918108eeec34dfa432b68b6bab3c6e Mon Sep 17 00:00:00 2001 From: Eduardo Rabelo Date: Tue, 8 Oct 2024 11:00:52 +1300 Subject: [PATCH] chore: mention SST_STAGE (#1211) - we can use `SST_STAGE` to declare the application stage - it can be declared in your `.env` or as environment variable --- cmd/sst/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/sst/main.go b/cmd/sst/main.go index 290bf11f8..17b22e341 100644 --- a/cmd/sst/main.go +++ b/cmd/sst/main.go @@ -226,6 +226,10 @@ var root = &cli.Command{ "2. Store this in the `.sst/stage` file and reads from it in the future.", "", "This stored stage is called your **personal stage**.", + "Another option is to use `SST_STAGE` environment variable. You can declare it in `.env` or before the CLI.", + "```bash frame=\"none\"", + "SST_STAGE=dev sst [command]", + "```", }, "\n"), }, },