From ea3874c474a401ba514b9667d9601c7f78c3d77d Mon Sep 17 00:00:00 2001 From: davidwells Date: Mon, 1 Aug 2016 17:02:22 -0700 Subject: [PATCH] docs(readme): update quick start table with steps --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ba54e2ca7..787e9afa1 100755 --- a/README.md +++ b/README.md @@ -33,13 +33,13 @@ Follow these simple steps to install serverless. Create and deploy your first service in under 5 minutes. -| **Command** | **Description** | -|---|-------| -| 1. `npm install -g serverless@beta` | Install Serverless CLI | -| 2. `mkdir my-first-service && cd my-first-service` | Create the project directory | -| 3. `serverless create --template aws-nodejs` | Create an AWS node lamdba function | -| 4. `serverless deploy` | Deploy to live AWS account | -| 5. `serverless invoke --function hello` | run the live API endpoint | +| **Step** | **Command** |**Description**| +|-|-------|------| +| 1. | `npm install -g serverless@beta` | Install Serverless CLI | +| 2. | `mkdir my-first-service && cd my-first-service` | Create the project directory | +| 3. | `serverless create --template aws-nodejs` | Create an AWS node lamdba function | +| 4. | `serverless deploy` | Deploy to live AWS account | +| 5. | `serverless invoke --function hello` | run the live API endpoint | Run `serverless remove` to clean up this function from your account.