fix(services): remove unnecessary comments and improve URL configuration in GBCoreService and GBMinService
All checks were successful
GBCI / build (push) Successful in 0s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-03-28 08:39:06 -03:00
parent 759caba765
commit 42b718a4b3

View file

@ -12,40 +12,38 @@ jobs:
steps: steps:
- name: Disable SSL verification (temporary) # - name: Disable SSL verification (temporary)
run: git config --global http.sslVerify false # run: git config --global http.sslVerify false
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
- name: Setup Node.js # - name: Setup Node.js
uses: actions/setup-node@v4 # uses: actions/setup-node@v4
with: # with:
node-version: '20' # node-version: '20'
cache: 'npm' # cache: 'npm'
- name: Copy files to deployment location # - name: Copy files to deployment location
run: | # run: |
sudo cp -r ./* /opt/gbo/bin/BotServer/ # sudo cp -r ./* /opt/gbo/bin/BotServer/
- name: Install production dependencies in deployment location # - name: Install production dependencies in deployment location
run: | # run: |
echo "[General Bots Deployer] Building BotServer..." # echo "[General Bots Deployer] Building BotServer..."
cd /opt/gbo/bin/BotServer # cd /opt/gbo/bin/BotServer
sudo npm ci --production # sudo npm ci --production
npm run build --if-present # npm run build --if-present
echo "[General Bots Deployer] Building default.gbui..." # echo "[General Bots Deployer] Building default.gbui..."
cd /opt/gbo/bin/BotServer/packages/default.gbui # cd /opt/gbo/bin/BotServer/packages/default.gbui
npm install # npm install
npm run build # npm run build
cd ../.. # cd /opt/gbo/bin/BotServer
rm -rf packages/default.gbui/node_modules # rm -rf packages/default.gbui/node_modules
- name: Kill previous Node.js process (if running) - name: Restart Bots Deployer
run: | run: |
echo "[General Bots Deployer] Restarting..."
pkill -f "node ./boot.mjs" || true pkill -f "node ./boot.mjs" || true
- name: Start Node.js in background (and persist after workflow)
run: |
nohup npm run start > /dev/null 2>&1 & nohup npm run start > /dev/null 2>&1 &