How should you manage SST’s local dev resources an...
# seed
c
How should you manage SST’s local dev resources and a ‘dev’ stage’s resources in Seed? Initially, I thought local dev may be creating and removing its own resources, but it looks like when you ‘sst remove’ you also tear down the resources on your Seed ‘dev’ stage. Can these both target the same AWS account w/o conflicts - or is it better to use separate accounts? Is a simple fix renaming the dev stage on Seed to something else, like ‘development’?
t
For local dev we typically recommend having unique stage names per developer so nothing else is referencing those stacks
That's why on first start in newer versions,
sst start
will prompt you for a local stage name
c
Ah, so avoid using ‘dev’ as a stage name reference for anything running locally at all? I see now it defaults to ‘sst’ for local. That make sense. Thanks Dax