|
|
|
|
|
by garethmcc
1642 days ago
|
|
This is where using a tool like the Serverless Framework helps solve a lot of these problems:
- Use async/await promises instead and the specific plugin for the Serverless Framework for configuring your Step Functions makes it easy!
- Nothing specific here but just call it hat makes sense.
- Use your runtimes dependancy management tool. NPM for Node for example
- Just us "serverless remove" (you used "serverless deploy" to set them up)
- No need for the console with the Serverless Framework
- Use Serverless Framework. Literally 3 lines of yml configuration and you are done. https://www.serverless.com/framework/docs/providers/aws/even... The dev cycle can be super fast. I have never before built stuff so quickly. Using "serverless deploy function -f functionName" means I can push my code changes into the cloud in 3 seconds for testing purposes so need to even setup local testing environments which can get very complex and be totally inaccurate compared to the environment that exists in AWS |
|