Add missing TODO details

This commit is contained in:
2024-11-10 23:49:17 -06:00
parent 080f910c5f
commit 0289d4386d
2 changed files with 2 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ jobs:
id: cached-pip-wheels id: cached-pip-wheels
uses: actions/cache@v4 uses: actions/cache@v4
with: 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 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') }} key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }}

View File

@@ -44,6 +44,7 @@ async def lifespan(_: FastAPI) -> AsyncIterator[None]:
from linkpulse.routers import auth, misc from linkpulse.routers import auth, misc
# TODO: Apply migrations on startup in production environments
app = FastAPI(lifespan=lifespan, default_response_class=ORJSONResponse) app = FastAPI(lifespan=lifespan, default_response_class=ORJSONResponse)
app.include_router(auth.router) app.include_router(auth.router)
app.include_router(misc.router) app.include_router(misc.router)