diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 75646b0..b35f8d3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -36,6 +36,7 @@ jobs: id: cached-pip-wheels uses: actions/cache@v4 with: + # TODO: Apparently this is failing for some reason, path does not exist? Fix after 0.3.0 release path: .venv # While ~/.cache is a fine default, I want to separate this cache from other caches key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }} diff --git a/backend/linkpulse/app.py b/backend/linkpulse/app.py index 289d241..287c391 100644 --- a/backend/linkpulse/app.py +++ b/backend/linkpulse/app.py @@ -44,6 +44,7 @@ async def lifespan(_: FastAPI) -> AsyncIterator[None]: from linkpulse.routers import auth, misc +# TODO: Apply migrations on startup in production environments app = FastAPI(lifespan=lifespan, default_response_class=ORJSONResponse) app.include_router(auth.router) app.include_router(misc.router)