Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

359 changes: 359 additions & 0 deletions example/vite-app/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions example/vite-app/providers/fastapi_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from fastapi import FastAPI
from starlette.templating import Jinja2Templates

from fastapi_startkit.fastapi.providers import FastAPIProvider as BaseFastAPIProvider
from fastapi_startkit.fastapi import FastAPIProvider as BaseFastAPIProvider


class FastAPIProvider(BaseFastAPIProvider):
Expand All @@ -23,4 +23,4 @@ def boot(self) -> None:
super().boot()

from routes.web import web
self.app.include_router(web)
self.app.include_router(web)
2 changes: 1 addition & 1 deletion example/vite-app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Vite + FastAPI example using fastapi-startkit"
requires-python = ">=3.12"
dependencies = [
"fastapi-startkit[fastapi]",
"fastapi-startkit[fastapi,vite]",
"jinja2>=3.1",
]

Expand Down
17 changes: 12 additions & 5 deletions example/vite-app/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading