something something

This commit is contained in:
2022-12-13 20:07:50 +05:00
commit d7f0272d9a
3 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#!/bin/bash
#Default auto configs
if ! [ -f init/init ]
then ./auto_config.sh
fi
#Start Php-fpm
cd && node &
#Start frontend
cd && node &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?