Reputation: 32247
$ sls deploy list functions -s dev
This will display a list of functions that are currently on the remote "dev" environment
Question
Is there a cli helper to see a list the functions that can be executed locally?
Currently I'm looking in my list of definitions (serverless.yml)
Upvotes: 0
Views: 171
Reputation: 16077
You can use sls info
.
Also, you can use sls print
which is very similar to cat serverless.yml
.
Upvotes: 1