N.AIQ2 / start.sh
Deepak Sahu
warm
97127b4
raw
history blame contribute delete
201 Bytes
#!/bin/bash
# Run both commands in parallel
aiq serve --config_file=config.yaml &
python frontend.py
# Wait for any to exit (optional)
wait -n
# Exit with status of the first failed process
exit $?