This commit is contained in:
Brage Skjønborg 2026-01-18 16:15:41 +01:00
parent 60adf51a4c
commit 7a3053741c
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import signal import signal
import sys import sys
from threading import Thread from threading import Thread
from api.health_api import init_health_api from api.health_api import app as health_app, init_health_api
from config.database_config import DatabaseConfig from config.database_config import DatabaseConfig
from db.database import Database from db.database import Database
from utils.logger import logger from utils.logger import logger

View File

@ -80,7 +80,7 @@ def main():
heartbeat_ref=get_heartbeat heartbeat_ref=get_heartbeat
) )
uvicorn.run(app, host="0.0.0.0", port=8000) uvicorn.run(app, host="0.0.0.0", port=8080)
except Exception as e: except Exception as e:
logger.error(f"❌ Kritisk feil i app: {e}") logger.error(f"❌ Kritisk feil i app: {e}")