mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
14 lines
266 B
Bash
14 lines
266 B
Bash
|
|
#!/bin/bash
|
|
|
|
# Start the main app
|
|
node --inspect=0.0.0.0:9229 --require ts-node/register Index.ts &
|
|
|
|
# Start the accounts app
|
|
cd ./FeatureSet/Accounts && npm run dev &
|
|
|
|
# Wait for any process to exit
|
|
wait -n
|
|
|
|
# Exit with status of process that exited first
|
|
exit $? |