LeoRaja commited on
Commit
d1fe6c6
·
verified ·
1 Parent(s): d4e9a4d

Create start.sh

Browse files
Files changed (1) hide show
  1. start.sh +10 -0
start.sh ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo "Running all tasks..."
4
+
5
+ TASK=easy python inference.py &
6
+ TASK=medium python inference.py &
7
+ TASK=hard python inference.py &
8
+
9
+ echo "Starting API server..."
10
+ uvicorn app:app --host 0.0.0.0 --port 7860