Files
vector-admin/workers/entrypoint.sh
T
2023-07-25 13:56:36 -07:00

6 lines
287 B
Bash
Executable File

#!/bin/bash
trap 'trap - SIGTERM && kill -9 $(lsof -t -i tcp:3355) && kill -9 $(lsof -t -i tcp:8288)' SIGINT SIGTERM EXIT &\
NODE_ENV=production node index.js 2>&1 | tee ./logs/nodelog.log &\
npx inngest-cli prod -u http://127.0.0.1:3355/background-workers 2>&1 | tee ./logs/worker.log