Just downloaded and tested SST last night. Liking ...
# guide
j
Just downloaded and tested SST last night. Liking it a lot so far. Noticed some small updates with the docs that can help first time devs/ops
In Getting Started
Copy code
# Deploy to prod
npm deploy --stage prod
to
Copy code
# Deploy to prod
npm run deploy -- --stage prod
In Intro, replace all
Copy code
npm run deploy --stage prod
with
Copy code
npm run deploy -- --stage prod
same with
npm run remove --stage prod
Happy to open a PR if needed
m
thanks @Jirawat Uttayaya, they are updated, will be pushed today.
f
Thanks @manitej, I saw your PR. Let’s try using
npx
everywhere. So instead of
Copy code
npm deploy --stage prod
do
Copy code
npx sst deploy --stage prod