Merge pull request #82 from cmgustavo/bug/server-start

Fixes start server and updates readme
This commit is contained in:
Matias Alejo Garcia 2015-02-24 14:19:03 -03:00
commit a963b03ba0
2 changed files with 5 additions and 2 deletions

View File

@ -9,8 +9,11 @@ A Multisig HD Wallet Service, with minimun server trust.
# Quick Guide
``` shell
# Install dependencies
npm install
# Start the server
npm ./app.js
npm start
# Try the CLI interface
cd bit-wallet

View File

@ -49,7 +49,7 @@
"istanbul": "*"
},
"scripts": {
"start": "node server.js",
"start": "node app.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "./node_modules/.bin/mocha",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"