This means this project is 100% open-source. You can find its source code in the Twilio Labs GitHub organization.
We currently don't support the projects through our official support channels. But you are welcome to reach out to us on GitHub for any questions, issues or suggestions or to contribute to this project.
There is a lot you can do with the Twilio Serverless Toolkit. Here are some common examples of commands you might want to run.
There are two ways you can use the toolkit. If you are already using the Twilio CLI, you can install it via a plugin. Alternatively, you can use the toolkit as a standalone using twilio-run via npm or another Node.js package manager.
Throughout the docs we'll reference the Twilio CLI commands.
The list command allows you to list out:
Here is some common tasks you might want to do with the list command.
1# List all existing Serverless services in a formatted way:23twilio serverless:list services45# Only list the service SIDs and unique names in a table:67twilio serverless:list services --properties sid,unique_name
1# Activates the same deployment that is on the "dev" environment to the "stage"23twilio serverless:promote \4--source-environment=dev \5--environment=stage