Hi - just trying out the simple hello world and I'...
# help
j
Hi - just trying out the simple hello world and I'm getting
Stack 'arn-aws-iam--xxxxxxxxxxx-my-stack' does not exist
and the endpoint says
Client not connected. Make sure "sst start" is running.
Figured it out - I needed to do
npx sst build
and
npx sst deploy
This isn't clear from the getting started documentation.
r
You should only need to
sst deploy
after finishing your
sst start
session, i.e.
sst build
is superfluous
j
This guide (https://docs.serverless-stack.com/) just has this:
Copy code
# Create a new SST app
npx create-serverless-stack@latest my-sst-app
cd my-sst-app

# Start Live Lambda Dev
npx sst start

# Open the SST Console
open <http://console.serverless-stack.com|console.serverless-stack.com>

# Deploy to prod
npx sst deploy --stage prod
r
Yes, exactly. There’s no
sst build
step
j
But following this didn't work - and I ended up with the above errors.
r
That’s strange then, deploy should run the build step itself
f
@Josh Moont, are you still having this issue?
j
TBH I haven't tried again. I'll let you know. Thanks.