remove unsupported options

This commit is contained in:
Christopher Anderson 2017-02-22 00:03:01 -08:00
parent 3bde18cf7b
commit 8d2aadb4e6

View File

@ -19,8 +19,8 @@ Intro. Quick recommendations and tips for various processes.
1. Write your functions
2. Use `serverless deploy` only when you've made changes to `serverless.yml` and in CI/CD systems.
3. Use `serverless deploy function -f myFunction` to rapidly deploy changes when you are working on a specific Azure Functions Function.
4. Use `serverless invoke -f myFunction -l` to test your Azure Functions.
5. Open up a separate tab in your console and stream logs in there via `serverless logs -f myFunction -t`.
4. Use `serverless invoke -f myFunction ` to test your Azure Functions.
5. Open up a separate tab in your console and stream logs in there via `serverless logs -f myFunction`.
6. Write tests to run locally.
### Larger Projects