Skip to content

Commit

Permalink
Merge pull request #1303 from akvo/1227_docs
Browse files Browse the repository at this point in the history
[#1227] Updated get started with dev docs
  • Loading branch information
KasperBrandt committed Mar 13, 2015
2 parents 42da1ae + 0095151 commit cdba04f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ For local development Vagrant is used. The development env is loaded with a smal

## Setup local settings
```shell
$ cp akvo/settings//66_local.template akvo/settings/66_local.conf
$ cp akvo/settings/66_local.template akvo/settings/66_local.conf
```

## Boot vagrant environment
Expand All @@ -23,7 +23,15 @@ $ ./supervisorctl.sh stop rsr && ./manage.sh runserver
```

## Make sure assets are rebuilt on change (WIP)
To build assets we're relying on node.js and gulp. So with node and gulp available:
To build assets we're relying on [Node.js](http://nodejs.org) and [Gulp](http://gulpjs.com).
Verify that you have node and gulp installed (paths will depend on install method and OS):
```shell
$ which node
/usr/local/bin/node
$ which gulp
/usr/local/bin/gulp
```
Then install required node modules and set gulp to build assets on file changes:
```shell
$ cd scripts/devhelpers
$ npm install
Expand Down

0 comments on commit cdba04f

Please sign in to comment.