I have a non-trivial serverless (sls) stack, can I install SST to enjoy the benefits of live development?
I saw ‘migration from serverless framework’ in the document, but it still needs the manual migration. For a large sls project, it sounds quite time consuming, can we get the live development benefits for the existing functions?
f
Frank
09/14/2021, 5:53 AM
Hey @syang, yeah you can move the Lambda functions over to SST while keeping the non-Lambda resources in SLS.
Frank
09/14/2021, 5:54 AM
Imagine you had an SNS topic with a few subscribers in your
serverless.yml
. You would still defined the topic in SLS, but remove the subscribers in the
functions
block. Then in SST, import the existing topic and add the subscribers to it.