okiba/buildfiles/start_services.sh

15 lines
281 B
Bash
Raw Normal View History

2022-12-13 20:07:50 +05:00
#!/bin/bash
source $HOME/.profile; source $HOME/.bashrc
2022-12-13 20:07:50 +05:00
#Start frontend
/usr/sbin/nginx -g 'daemon off; master_process on;' &
2022-12-14 00:09:07 +05:00
#Start backend
cd /root/okiba-org-backend; pnpm start &
2022-12-13 20:07:50 +05:00
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?