Removed run.py not needed any longer. Changed port to 6090.

This commit is contained in:
2025-05-04 14:56:04 -05:00
parent 2abae7fc1c
commit 9f923bcf54
2 changed files with 1 additions and 20 deletions

19
run.py
View File

@@ -1,19 +0,0 @@
import logging
import os
import sys
# Add the src directory to Python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s")
logger = logging.getLogger(__name__)
if __name__ == "__main__":
import uvicorn
uvicorn.run(
"src.stream_link_server:app",
host="0.0.0.0",
port=7860,
reload=True,
workers=2
)

View File

@@ -49,7 +49,7 @@ if __name__ == "__main__":
uvicorn.run(
"stream_link_server:app",
host="0.0.0.0",
port=7860,
port=6090,
reload=True,
workers=2
)