File size: 237 Bytes
724c568
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

# Start the first process
lc-serve deploy local api.py &

# Start the second process
streamlit run app.py --server.port=7860 &

# Wait for any process to exit
wait -n

# Exit with status of process that exited first
exit $?