mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-18 10:07:07 -04:00
6 lines
287 B
Bash
Executable File
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
|