micro/wrapper.sh

7 lines
107 B
Bash

#!/bin/sh
cd packages/api && node ./dist/index.js &
cd packages/web && node ./server.js &
wait -n
exit $?