Spaces:
Sleeping
Sleeping
Commit
·
e3fc6ee
1
Parent(s):
bf795ac
Test
Browse files- Procfile +1 -1
- app/server.py +1 -1
Procfile
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
web: uvicorn app.server:app --host 0.0.0.0 --port $PORT --root-path /api/ai
|
2 |
|
|
|
1 |
+
web: uvicorn app.server:app --host 0.0.0.0 --port $PORT --root-path /api/ai/
|
2 |
|
app/server.py
CHANGED
@@ -35,4 +35,4 @@ add_routes(
|
|
35 |
if __name__ == "__main__":
|
36 |
import uvicorn
|
37 |
|
38 |
-
uvicorn.run(app, host="localhost", port=7860
|
|
|
35 |
if __name__ == "__main__":
|
36 |
import uvicorn
|
37 |
|
38 |
+
uvicorn.run(app, host="localhost", port=7860)
|