File size: 136 Bytes
f24e0f7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Start the netron server
netron &

# Start the the web app 
uvicorn app:app --host 0.0.0.0 --port 7860 &

wait -n

exit $?