Skip to content

Commit

Permalink
Merge pull request #53 from neelabhg/master
Browse files Browse the repository at this point in the history
Alias grunt task for running a test server, readme updates
  • Loading branch information
neelabhg committed Nov 26, 2014
2 parents 329f184 + f30dd4f commit 1a56473
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,8 @@ module.exports = function (grunt) {
grunt.task.run('shell:writeGitRecentCommits');
});

grunt.registerTask('testserver', ['connect:test:keepalive']);

grunt.registerTask('deploy', 'Deploy the sys project', function(target) {

var targets = ['angraveprod', 'staging'];
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ sysbuild/
└── spec/
```

This project was scaffolded using the [Yeoman webapp generator](https://github.com/yeoman/generator-webapp).

## Development environment set up ##
1. [Set up Git](https://help.github.com/articles/set-up-git/) and install [node.js](http://nodejs.org/). Node's package manager ([npm](https://www.npmjs.org/)) comes bundled.

Expand Down Expand Up @@ -59,6 +61,9 @@ because of the [location npm installs global packages](https://www.npmjs.org/doc
* Run tests.
`grunt test`

* Run a local test server, to run the tests in a browser. Navigate to `http://localhost:9001` after running the following.
`grunt testserver`

## Contributing ##
1. Make sure your fork is up to date with the upstream repository. See https://help.github.com/articles/syncing-a-fork/.
`git fetch upstream`
Expand Down

0 comments on commit 1a56473

Please sign in to comment.