new dist conf

stable
Juanfran 2015-01-26 15:15:23 +01:00
parent 150bebeb74
commit a65f04b2d7
2 changed files with 5 additions and 1 deletions

View File

@ -5,8 +5,8 @@
##Installation
* Clone the repo
* Edit your configuration file `dist/js/conf.js`
* Expose the `dist` directory under a static file web server
* Rename dist/js/conf.example.json to conf.js if you want to change settings
More information about the different installation methods (production, development, vagrant, docker...) can be found here http://taigaio.github.io/taiga-doc/dist/#_installation_guide.

View File

@ -20,6 +20,10 @@ var action = (function cloneOrPull(){
}())
exec(action)
.then(function() {
//remove old tmp dist
return delAsync(local + '/dist');
})
.then(function() {
//compile taiga
return exec('cd ' + local + ' && npm install && bower install && gulp deploy');