Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- outputs/.gitkeep +0 -0
- server/app.py +2 -2
outputs/.gitkeep
ADDED
|
File without changes
|
server/app.py
CHANGED
|
@@ -77,9 +77,9 @@ app = create_app(
|
|
| 77 |
|
| 78 |
|
| 79 |
|
| 80 |
-
def main():
|
| 81 |
import uvicorn
|
| 82 |
-
uvicorn.run(app, host=
|
| 83 |
|
| 84 |
|
| 85 |
if __name__ == "__main__":
|
|
|
|
| 77 |
|
| 78 |
|
| 79 |
|
| 80 |
+
def main(host: str = "0.0.0.0", port: int = 8000):
|
| 81 |
import uvicorn
|
| 82 |
+
uvicorn.run(app, host=host, port=port)
|
| 83 |
|
| 84 |
|
| 85 |
if __name__ == "__main__":
|