updated a few grammatical errors

This commit is contained in:
Daniel Olson 2018-02-02 11:17:40 -05:00
parent b147126c3e
commit e5033aeb0c
15 changed files with 20 additions and 20 deletions

View File

@ -77,4 +77,4 @@ In your terminal window you should see the response from AWS Lambda.
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -72,4 +72,4 @@ In your terminal window you should see the response from AWS Lambda.
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -113,4 +113,4 @@ serverless invoke -f world
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -60,4 +60,4 @@ In your terminal window you should see the response from AWS Lambda.
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -60,4 +60,4 @@ In your terminal window you should see the response from AWS Lambda.
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -39,4 +39,4 @@ In your terminal window you should see the response from azure
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -35,4 +35,4 @@ Update the `credentials` and your `project` property in the `serverless.yml` fil
In your terminal window you should see a response from the Google Cloud
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -35,4 +35,4 @@ In your terminal window you should see the response from Apache OpenWhisk
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -35,4 +35,4 @@ In your terminal window you should see the response from Apache OpenWhisk
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -35,4 +35,4 @@ In your terminal window you should see the response from Apache OpenWhisk
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -35,4 +35,4 @@ In your terminal window you should see the response from Apache OpenWhisk
}
```
Congrats you have just deployed and run your Hello World function!
Congrats you have deployed and ran your Hello World function!

View File

@ -32,7 +32,7 @@ In your terminal window you should see the response
{"hello":"null"}
```
Congrats you have just deployed and ran your Hello World function!
Congrats you have deployed and ran your Hello World function!
## Short Hand Guide

View File

@ -32,7 +32,7 @@ In your terminal window you should see the response
{"hello":"from NodeJS8.3 function"}
```
Congrats you have just deployed and ran your Hello World function!
Congrats you have deployed and ran your Hello World function!
## Short Hand Guide

View File

@ -34,7 +34,7 @@ In your terminal window you should see the response
'{"hello":"from Python2.7 function"}'
```
Congrats you have just deployed and ran your Hello World function!
Congrats you have deployed and ran your Hello World function!
## Short Hand Guide

View File

@ -11,21 +11,21 @@ layout: Doc
# Hello World Ruby Example
Make sure `serverless` is installed.
Make sure `serverless` is installed.
## 1. Create a service
`serverless create --template spotinst-ruby --path serviceName` `serviceName` is going to be a new directory there the Ruby template will be loaded. Once the download is complete change into that directory. Next you will need to install the Spotinst Serverless Functions plugin by running `npm install` in the root directory. You will need to go into the serverless.yml file and add in the environment variable that you want to deploy into.
## 2. Deploy
```bash
```bash
serverless deploy
```
## 3. Invoke deployed function
```bash
serverless invoke --function hello
```
```
In your terminal window you should see the response
@ -33,14 +33,14 @@ In your terminal window you should see the response
'{"hello":"from Ruby2.4.1 function"}'
```
Congrats you have just deployed and ran your Hello World function!
Congrats you have deployed and ran your Hello World function!
## Short Hand Guide
`sls` is short hand for serverless cli commands
`sls` is short hand for serverless cli commands
`-f` is short hand for `--function`
`-t` is short hand for `--template`
`-p` is short hang for `--path`
`-p` is short hang for `--path`