Files
teamwallet/myteamwallet_backend/startup.ci.sh
Bastian Wagner 6bea4f766a first commit
2026-07-31 21:02:47 +02:00

12 lines
252 B
Bash

#!/usr/bin/env bash
set -e
/opt/wait-for-it.sh postgres:5432
npm run migration:run
npm run seed:run
npm run start:prod > /dev/null 2>&1 &
/opt/wait-for-it.sh maildev:1080
/opt/wait-for-it.sh localhost:3000
npm run lint
npm run test:e2e -- --runInBand