new dist conf
parent
150bebeb74
commit
a65f04b2d7
|
@ -5,8 +5,8 @@
|
||||||
##Installation
|
##Installation
|
||||||
|
|
||||||
* Clone the repo
|
* Clone the repo
|
||||||
* Edit your configuration file `dist/js/conf.js`
|
|
||||||
* Expose the `dist` directory under a static file web server
|
* 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.
|
More information about the different installation methods (production, development, vagrant, docker...) can be found here http://taigaio.github.io/taiga-doc/dist/#_installation_guide.
|
||||||
|
|
||||||
|
|
4
dist.js
4
dist.js
|
@ -20,6 +20,10 @@ var action = (function cloneOrPull(){
|
||||||
}())
|
}())
|
||||||
|
|
||||||
exec(action)
|
exec(action)
|
||||||
|
.then(function() {
|
||||||
|
//remove old tmp dist
|
||||||
|
return delAsync(local + '/dist');
|
||||||
|
})
|
||||||
.then(function() {
|
.then(function() {
|
||||||
//compile taiga
|
//compile taiga
|
||||||
return exec('cd ' + local + ' && npm install && bower install && gulp deploy');
|
return exec('cd ' + local + ' && npm install && bower install && gulp deploy');
|
||||||
|
|
Loading…
Reference in New Issue