2022-12-13 20:07:50 +05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-14 00:19:55 +05:00
|
|
|
source $HOME/.profile; source $HOME/.bashrc
|
2022-12-20 23:14:02 +05:00
|
|
|
|
2022-12-13 20:07:50 +05:00
|
|
|
#Start frontend
|
2022-12-20 23:14:02 +05:00
|
|
|
/usr/sbin/nginx -g 'daemon off; master_process on;' &
|
2022-12-14 00:09:07 +05:00
|
|
|
|
|
|
|
#Start backend
|
2022-12-14 00:22:52 +05:00
|
|
|
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 $?
|