Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis build #729

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
Use default tasks in package.json for setup and server.
  • Loading branch information
Tobias Haagen Michaelsen authored and jesperronn committed Mar 3, 2015
commit d642fd052e17d33b1e77be16600f63cfd09f7fcc
5 changes: 2 additions & 3 deletions doc/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ Getting started

npm install

- Download dependencies and build:
Download dependencies and build (done automatically after `npm install`)

npm run setup

- Serve **StackEdit** at `http:https://localhost:80/`:

npm run server
npm start

- Run **StackEdit** in debug mode (no application cache, serve original files instead of minified):

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"event-stream": "^3.1.7"
},
"scripts": {
"setup": "bower install && bower prune && gulp",
"server": "PORT=80 node server.js",
"postinstall": "bower install && bower prune && gulp",
"start": "PORT=80 node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand Down