Read this on the main serverless docs site¶
Tencent-SCF Workflow Tips¶
Quick recommendations and tips for various processes.
Development Workflow¶
- Write your functions
- Use
serverless deployonly when you've made changes toserverless.ymland in CI/CD systems. - Use
serverless deploy function -f myFunctionto rapidly deploy changes when you are working on a specific Serverless Cloud Function. - Use
serverless invoke -f myFunctionto test your functions on Tencent Cloud. - Open up a separate tab in your console and stream logs in there via
serverless logs -f myFunction -t. - Write tests to run locally.
Using stages¶
- At the very least, use a
devandproductionstage. - Use different Tencent Cloud accounts for stages.
- In larger teams, each member should use a separate Tencent Cloud account and their own stage for development.
Larger Projects¶
- Break your application/project into multiple Serverless Services.
- Model your Serverless Services around Data Models or Workflows.
- Keep the Functions and Resources in your Serverless Services to a minimum.
Cheat Sheet¶
A handy list of commands to use when developing with the Serverless Framework.
Create A Service:¶
Creates a new Service
Install A Service¶
This is a convenience method to install a pre-made Serverless Service locally by downloading the Github repo and unzipping it.
Deploy All¶
Use this when you have made changes to your Functions, Events or Resources in serverless.yml or you simply want to deploy all changes within your Service at the same time.
Deploy Function¶
Use this to quickly overwrite your SCF code on Tencent Cloud, allowing you to develop faster.
Invoke Function¶
Invokes a Serverless Cloud Function and returns logs.
Streaming Logs¶
Open up a separate tab in your console and stream all logs for a specific Function using this command.
Info¶
See information about your deployed/undeployed functions by running the info command in your service directory.