updates to compose file .env file final one_time_linke release

This commit is contained in:
MEGASOL\simon.adams
2025-09-02 09:56:43 +02:00
parent 60f1526f06
commit dedfd339a2
12 changed files with 143 additions and 105 deletions

View File

@@ -11,6 +11,6 @@ if __name__ == "__main__":
load_dotenv()
except Exception:
pass
host = os.getenv("HOST", "127.0.0.1")
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "8080"))
uvicorn.run("app.app:app", host=host, port=port, reload=True)