mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-05 23:15:26 -06:00
Add missing TODO details
This commit is contained in:
1
.github/workflows/test.yaml
vendored
1
.github/workflows/test.yaml
vendored
@@ -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') }}
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user