123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/bin/bash
-
- . bash_library.sh # source bash_library.sh
-
- windoz=""
- if [[ $1 = "-w" ]]; then
- windoz="windoz"
- fi
-
- log "cd frontend_lib"
- cd frontend_lib
- log "npm i"
- npm i
- log "sudo npm link"
- sudo npm link
- log "npm run buildtracimlib$windoz"
- npm run buildtracimlib$windoz
- cd -
-
- log "cd frontend_app_html-document"
- cd frontend_app_html-document
- log "npm i"
- npm i
- log "npm link tracim_frontend_lib"
- npm link tracim_frontend_lib
- log "npm run build$windoz # for frontend_app_html-document"
- npm run build$windoz
- log "cp dist/html-document.app.js"
- cp dist/html-document.app.js ../frontend/dist/app
- cd -
-
- log "cd frontend"
- cd frontend
- log "npm i"
- npm i
- log "npm link tracim_frontend_lib"
- npm link tracim_frontend_lib
- if [[ $1 = "-w" ]]; then
- log "npm run servdev # for frontend"
- npm run servdev
- else
- log "npm run servdev-dashboard # for frontend"
- npm run servdev-dashboard
- fi
|