|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #INSTALLING NODE JS
- cd ~
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
- source ~/.bashrc
- nvm list-remote
- echo "Enter the version of node you want to install: (Example. 'v16.19.1')"
- read nodeversion
- nvm install $nodeversion
-
- #ADDING GIT DOMAIN NAME TO HOSTS
- # echo "10.10.5.77 git.bbh.org.in" >> /etc/hosts
-
- #PRODUCTION A SETUP
- cd ~
- cd Desktop
- mkdir chess
- cd chess
- mkdir production_A
- cd production_A
- git clone http://git.bbh.org.in/chess/project-genesis-backend
- cd project-genesis-backend
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/project-genesis-frontend
- cd project-genesis-frontend
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/BBH_Patient_Portal
- cd BBH_Patient_Portal
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/elixir-config-development
- cd elixir-config-development
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/processmanager
- cd processmanager
- git checkout production
- npm i
-
- #PRODUCTION B SETUP
- cd ~
- cd Desktop
- cd chess
- mkdir production_B
- cd production_B
- git clone http://git.bbh.org.in/chess/project-genesis-backend
- cd project-genesis-backend
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/project-genesis-frontend
- cd project-genesis-frontend
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/BBH_Patient_Portal
- cd BBH_Patient_Portal
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/elixir-config-development
- cd elixir-config-development
- git checkout production
- npm i
-
- cd ..
- git clone http://git.bbh.org.in/chess/processmanager
- cd processmanager
- git checkout production
- npm i
|