File size: 201 Bytes
521dc73
 
 
 
fa3b522
521dc73
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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 $?