mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
2.3 KiB
2.3 KiB
Read this on the main serverless docs site
Google - Workflow
Intro. Quick recommendations and tips for various processes.
Development Workflow
- Write your functions
- Use
serverless deploywhen you've made changes toserverless.ymland in CI/CD systems - Use
serverless invoke --function myFunctionto test your Google Cloud Functions - Open up a separate tab in your console and see logs in there via
serverless logs --function myFunction - Write tests to run locally
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:
- Create a new service with the
google-nodejstemplate
serverless create --template google-nodejs --path my-service
- Install the dependencies
cd my-service
npm install
- Update
serverlesss.yml
Update the project and credentials in your projects serverless.yml
Install A Service
This is a convenience method to install a pre-made Serverless Service locally by downloading the Github repo and unzipping it.
serverless install -u [GITHUB URL OF SERVICE]
Deploy
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.
serverless deploy
Invoke Function
Invokes an Google Cloud Function
serverless invoke function --function [FUNCTION NAME]
Logs
Open up a separate tab in your console and see logs for a specific function using the following command.
serverless logs --function [FUNCTION NAME]
Info
See information about your deployed service by running the info command in your service directory.
serverless info