Update service ports to 12015 for backend and 12016 for frontend; adjust configurations and documentation accordingly

This commit is contained in:
2026-04-29 11:52:12 +02:00
parent d484721a94
commit abd61798c7
11 changed files with 59 additions and 57 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose port
EXPOSE 12000
EXPOSE 12015
# Run the application
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "12000"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "12015"]
+1 -1
View File
@@ -30,7 +30,7 @@ app = FastAPI(
app.add_middleware(
CORSMiddleware,
allow_origins=[os.getenv("CORS_ORIGINS", "http://localhost:12001")],
allow_origins=[os.getenv("CORS_ORIGINS", "http://localhost:12016")],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],