Skip to content

Commit

Permalink
Fix readme formatting..
Browse files Browse the repository at this point in the history
Updated readme formatting and changed the version number.
  • Loading branch information
jerwallace committed Nov 18, 2017
1 parent 64f801a commit 3202e65
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions README.md
Expand Up @@ -231,18 +231,23 @@ bower install

Before we get going, here is a quick intro to a tool called **Gulp**. Gulp is a task manager for Node.js applications. It enables us to wire up commands that will perform common tasks. Here are a few we will use today. Go ahead and try them out!

> ```
```
gulp serve
```
> This command will run a local webserver that is listening for any changes to your app directory. If there are an file changes, it will reload the local running web application. This is great for development, as you can see changes live as you update the code.
> ```

This command will run a local webserver that is listening for any changes to your app directory. If there are an file changes, it will reload the local running web application. This is great for development, as you can see changes live as you update the code.

```
gulp build
```
> This command will package up all of the files you need for your static site and write them into your **/dist/** folder. This is the folder that serverless is using when it publishes your S3 static files.
> ```

This command will package up all of the files you need for your static site and write them into your **/dist/** folder. This is the folder that serverless is using when it publishes your S3 static files.

```
gulp test
```
> This command will run the unit tests defined in the **/test/** folder. For this project, we have not defined any unit test.

This command will run the unit tests defined in the **/test/** folder. For this project, we have not defined any unit test.

Awesome. Now you know how to work with Gulp! Next, let's open up **app/scripts/main.js** in Atom and copy and paste your identity pool ID from Cognito. You can get this from the Cognito console.

Expand All @@ -259,8 +264,7 @@ Awesome. Now you know how to work with Gulp! Next, let's open up **app/scripts/m
sls client deploy
```

4. Serverless will output an S3 link. Put that S3 link in your browser and check out your static site!!

4. Serverless will output an S3 link. Put that S3 link in your browser and check out your static site

### Volume Tracking Backend

Expand Down

0 comments on commit 3202e65

Please sign in to comment.