Commit d2b6b43f7d6e60350491a1337853ba4fd5f3efb0

Authored by stutrzbecher@gmail.com
1 parent 9a7ad2fc
Exists in dev-fixes

change README install instructions

Showing 1 changed file with 14 additions and 1 deletions   Show diff stats
README.md
... ... @@ -4,12 +4,25 @@ The Noosfero theme that uses the API to create a totally new client-side fronten
4 4  
5 5 ## Getting started
6 6  
  7 +### If you use Vagrant
  8 +Use our [VirtualBox](https://atlas.hashicorp.com/paulohtfs/boxes/noosfero-dev) with everything setup.
  9 +Run:
  10 +```
  11 + vagrant init paulohtfs/noosfero-dev
  12 + vagrant up --provider virtualbox
  13 + vagrant ssh
  14 +```
  15 +This box provides Noosfero and the Angular base theme repositories.
  16 +We've also set up vim and tmux to make the work easier.
  17 +
7 18 ### How to Install
8 19 1. Install [Node.js](https://nodejs.org/) and [npm](https://www.npmjs.com/)
9 20 1. Install [Bower](http://bower.io/): `npm install -g bower`
  21 +1. Install [Gulp](http://gulpjs.com/): `npm install -g gulp`
10 22 1. Install Node.js dependencies: `npm install`
11 23 1. Install bower dependencies: `bower install`
12   -1. Build the project: `gulp build`
  24 +1. Build the project: `npm run build`
  25 +1. Run project tests: `npm run test`
13 26  
14 27 ### How to Use
15 28  
... ...