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