Kaynağa Gözat

Merge branch 'master' of Trias_Org/elxr into master

production
chess 1 yıl önce
ebeveyn
işleme
eec2e11144

+ 0
- 8
trias/DB/mysql_restore.sh Dosyayı Görüntüle

@@ -1,8 +0,0 @@
DB_USER="root"
DB_PASS="root@123"
DB_NAME="triq_demo"
echo "Enter the name of backup file: "
read folderName
BACKUP_FILE="~/mysql_backup/$folderName"
# Restore backup file
mysql -u $DB_USER -p$DB_PASS $DB_NAME < $BACKUP_FILE

trias/DB/mysql_backup.sh → trias/Database/mysql_backup.sh Dosyayı Görüntüle

@@ -6,13 +6,11 @@ DB_PASS="root@123"
DB_NAME="triq_demo"

# Set the backup directory
BACKUP_DIR="~/mysql_backup"
BACKUP_DIR="/mysql_backup"

# Set the backup filename format
DATE=$(date +"%Y-%m-%d_%H-%M-%S")
FILENAME="${DB_NAME}_${DATE}.sql"
FILENAME="${DB_NAME}_${DATE}"

# Create the backup
echo mysqldump -u $DB_USER -p$DB_PASS $DB_NAME > $BACKUP_DIR/$FILENAME
mysqldump -u $DB_USER -p$DB_PASS $DB_NAME > $BACKUP_DIR/$FILENAME
# mysqldump -u root -p 'root@123' triq_demo > ~/mysql_backup/temp_1

+ 12
- 0
trias/Database/mysql_restore.sh Dosyayı Görüntüle

@@ -0,0 +1,12 @@
# Set the database credentials
DB_USER="root"
DB_PASS="root@123"
DB_NAME="triq_demo"

# Set the backup directory
echo "Enter the name of backup file: "
read fileName
BACKUP_FILE="/mysql_backup/$fileName"

# Restore backup file
mysql -u $DB_USER -p$DB_PASS $DB_NAME < $BACKUP_FILE

+ 30
- 13
trias/Server/trias_appserver_script.sh Dosyayı Görüntüle

@@ -1,3 +1,14 @@
#STORE GIT CREDENTIALS IN CACHE
git config --global credential.helper store
git config --global credential.helper 'store --file ~/.git-credentials'
echo "Enter git username: "
read gitUser
echo "username=$gitUser" >> ~/.git-credentials
echo "Enter git password: "
read gitPassword
echo "password=$gitPassword" >> ~/.git-credentials
chmod 0600 ~/.git-credentials

#INSTALLING NODE JS
cd ~
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh
@@ -8,14 +19,12 @@ nvm install v16.19.1
node --version
npm --version
npm install -g @angular/cli
npm install pm2
npm install -g pm2
pm2 install typescript
# 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
@@ -35,14 +44,14 @@ git checkout production
npm i

cd ..
git clone http://git.bbh.org.in/chess/BBH_Patient_Portal
cd BBH_Patient_Portal
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 clone http://git.bbh.org.in/chess/elixir-config-production
cd elixir-config-production
git checkout production
npm i

@@ -52,6 +61,10 @@ cd processmanager
git checkout production
npm i

#TO CREATE SYMLINK
cd ..
ln -s elixir-config-production/ config

#PRODUCTION B SETUP
cd ~
cd Desktop
@@ -70,14 +83,14 @@ git checkout production
npm i

cd ..
git clone http://git.bbh.org.in/chess/BBH_Patient_Portal
cd BBH_Patient_Portal
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 clone http://git.bbh.org.in/chess/elixir-config-production
cd elixir-config-production
git checkout production
npm i

@@ -85,4 +98,8 @@ cd ..
git clone http://git.bbh.org.in/chess/processmanager
cd processmanager
git checkout production
npm i
npm i

#TO CREATE SYMLINK
cd ..
ln -s elixir-config-production/ config

+ 17
- 0
trias/trias_app_update.sh Dosyayı Görüntüle

@@ -0,0 +1,17 @@
#SCRIPT TO PULL LATEST UPDATES AUTOMATICALLY
cd ../project-genesis-backend
git pull

cd ../project-genesis-frontend
git pull

cd ../bbh_patient_portal
git pull

cd ../elixir-config-production
git pull

cd ../processmanager
git pull

pm2 reload all

Loading…
İptal
Kaydet