[TIC-UI] performance improvement
[archive/20170607/tools/tic.git] / README.md
1 # Tizen Image Configurator
2
3 ## Install
4
5 >
6     npm install
7     ./node_modules/bower/bin/bower install
8     ./node_modules/gulp/bin/gulp.js
9
10 ## Run
11
12 >
13     ./node_modules/pm2/bin/pm2 start app.js
14
15 ### PM2 Options
16 - ./node_modules/pm2/bin/pm2 start app.js -i 0
17 - ./node_modules/pm2/bin/pm2 stop all
18 - ./node_modules/pm2/bin/pm2 delete all
19 - ./node_modules/pm2/bin/pm2 start app.js --watch
20 - https://github.com/Unitech/pm2#commands-overview
21
22
23 ## Proxy Settings
24 ### NPM proxy
25
26 >
27     npm config set proxy http://yourProxy:yourPort
28     npm config set https-proxy https://yourProxy:yourPort
29     npm config set strict-ssl false
30     npm config set registry http://registry.npmjs.org/
31
32 ### Bower proxy
33
34 - Edit for .bowerrc file
35
36 >
37     {
38         "directory": "bower_components",
39         "proxy": "http://yourProxy:yourPort",
40         "https-proxy":"https://yourProxy:yourPort",
41         "strict-ssl": false
42     }