Skip to content
Snippets Groups Projects
Commit 6f218336 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #749 from ozten/dec-13-2011-readme

Updating Install instructions, reving Vagrant VM, adding update instructions.
parents 1634e2ae 813b3db7
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,8 @@ or changes will be made.
```
cd browserid
vagrant up
vagrant ssh vagrant@lucid32:browserid
node ./run.js
vagrant ssh
npm start
```
`vagrant up` will take a while. Go get a cup of coffee. This is because it downloads the 500MB VM.
......@@ -44,6 +44,7 @@ Here's the software you'll need installed:
* node.js (>= 0.6.2): http://nodejs.org/
* npm: http://npmjs.org/ (or bundled with node in 0.6.3+)
* libgmp3
* git
* g++
......@@ -54,6 +55,13 @@ Here's the software you'll need installed:
3. run `npm start` to start the servers locally
4. visit the demo application ('rp') in your web browser (url output on the console at runtime)
You can stop the servers with a Cntl-C in the terminal.
## Staying up to date:
1. rm -Rf var node_modules
2. npm install
## Testing
Unit tests can be run by invoking `npm test` at the top level, and you
......
Vagrant::Config.run do |config|
config.vm.box = "lucid32_2.box"
config.vm.box_url = "http://people.mozilla.org/~aking/browserid/lucid32_2.box"
config.vm.box = "browserid_3.box"
config.vm.box_url = "http://people.mozilla.org/~aking/browserid/browserid_3.box"
# name vagrant desktop
config.vm.forward_port("readme", 10000, 10000)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment