circulartext commited on
Commit
86fcc44
1 Parent(s): c55fbb8

Create entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +7 -0
entrypoint.sh ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Any setup or configuration steps before running the main application
4
+ # ...
5
+
6
+ # Run the main application
7
+ exec uvicorn app:app --host 0.0.0.0 --port 7860