Skip to content

Commit

Permalink
fix: use correct logo path
Browse files Browse the repository at this point in the history
  • Loading branch information
giltinde committed Jun 12, 2024
1 parent a331a90 commit 8d4e3d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deforestation_api/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def lifespan(deforestation_app: FastAPI):
app.include_router(healthcheck.router)

# The OpenEPI logo needs to be served as a static file since it is referenced in the OpenAPI schema
app.mount("/static", StaticFiles(directory="assets/"), name="static")
app.mount("/static", StaticFiles(directory="deforestation_api/assets/"), name="static")

logging.basicConfig(level=logging.INFO)

Expand Down
File renamed without changes

0 comments on commit 8d4e3d6

Please sign in to comment.