Compare commits

..

No commits in common. "ee7504bdf297d53876d2c2e8c824c40db4066a40" and "e4f072655e613718ec6a542f2295dc0a564620f2" have entirely different histories.

5 changed files with 5354 additions and 9994 deletions

View file

@ -51,14 +51,14 @@ steps:
- name: build
image: node
commands:
- npm ci
- npm run build
- yarn install --frozen-lockfile
- yarn build
- name: test
image: node
commands:
- npm ci
- npm test
- yarn install --frozen-lockfile
- yarn test
trigger:
branch:

9982
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -13,11 +13,11 @@ cd ~/apps/card-drop/card-drop_prod \
&& (pm2 stop card-drop_prod || true) \
&& (pm2 delete card-drop_prod || true) \
&& cp .prod.env .env \
&& npm run clean \
&& npm ci \
&& npm run build \
&& yarn clean \
&& yarn install --frozen-lockfile \
&& yarn build \
&& docker compose --file docker-compose.prod.yml up -d \
&& echo "Sleeping for 10 seconds to let database load..." \
&& sleep 10 \
&& npm run db:up \
&& yarn run db:up \
&& NODE_ENV=production pm2 start --name card-drop_prod dist/bot.js

View file

@ -13,11 +13,11 @@ cd ~/apps/card-drop/card-drop_stage \
&& (pm2 stop card-drop_stage || true) \
&& (pm2 delete card-drop_stage || true) \
&& cp .stage.env .env \
&& npm run clean \
&& npm ci \
&& npm run build \
&& yarn clean \
&& yarn install --frozen-lockfile \
&& yarn build \
&& docker compose --file docker-compose.stage.yml up -d \
&& echo "Sleeping for 10 seconds to let database load..." \
&& sleep 10 \
&& npm run db:up \
&& yarn run db:up \
&& NODE_ENV=production pm2 start --name card-drop_stage dist/bot.js

5342
yarn.lock Normal file

File diff suppressed because it is too large Load diff