Aaron McCloud
11/15/2021, 2:24 AMnpm start
I need to run npx sst start
in the parent directory (for the creds
file).
Is there a better way to do local development with a SS project?Frank
creds
file are you referring to?Frank
Aaron McCloud
11/28/2021, 3:57 AMnpx sst start
running in it.
The front-end is in a child folder of the root, in line with the SS guidance. Running npm start
in the child folder, with the front-end, gives me the error:
sst-env: Cannot find the SST outputs file in [path to root folder]. Make sure "sst start" is running.
Aaron McCloud
11/28/2021, 3:58 AMfront-end being built by Serverless Stack
.Frank
/
sst.json
frontend/
And what you saw is that if you ran npx sst start
inside root /
, and then try to run npm start
inside frontend/
, you get the sst-env: Cannot find the SST outputs file
error.Frank
Aaron McCloud
11/30/2021, 5:43 PMFrank
.build
folder? The file sst-env
is looking should be in there.Frank
Aaron McCloud
12/10/2021, 9:47 PM