Hey all, getting a bit of an error running the `st...
# help
b
Hey all, getting a bit of an error running the
start
command. Was working fine up until this morning. I start up and then I get a websocket connection error that just infinitely repeats. I don't really think I changed very much that would have affected this. Look familiar to anyone, or anyone know where I might be able to start looking? https://gist.github.com/mittonface/28080899524db2978e567e7aaefa4995
actually, I have an idea.
I'm pretty sure the problem here is that I'm not really using
sst.json
for anything. Individual dev environments are being controlled by environment variables for the most part. But when two devs are running
start
their debug stacks are getting identical names because of the
name
property in
sst.json
. So we're trampling on each others's Websocket APIS in API Gateway. I could just get everyone to change the
name
property locally in
sst.json
, but it would be a little bit easier if I could do this with an environment variable instead.
b
ah!
"sst start --stage $(whoami)"
is actually pretty smart. I can work with that!