Commit 5261b45e authored by Hines, Jesse's avatar Hines, Jesse
Browse files

Log frontend url

parent ddbc1146
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ services:
      # - EXADIGIT_ROOT_PATH
      - EXADIGIT_DEBUG_MODE=true
      # - EXADIGIT_JOB_IMAGE
      - EXADIGIT_ALLOW_ORIGINS=["*"]
      - EXADIGIT_ALLOW_ORIGINS=["http://localhost:8080"]
      - DRUID_SERVICE_URL=http://druid-router:8888
      - KAFKA_BOOTSTRAP=kafka:9092
    healthcheck:
+3 −1
Original line number Diff line number Diff line
@@ -131,6 +131,8 @@ if settings.allow_origins:
        allow_methods=["*"],
        allow_headers=["*"],
    )
    if "*" not in settings.allow_origins:
        logger.info(f"Frontend hosted at {' '.join(settings.allow_origins)}")

from .endpoints import router
app.include_router(router)