fastapi-fullstack 0.1.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_fullstack-0.1.7.dist-info/METADATA +739 -0
- fastapi_fullstack-0.1.7.dist-info/RECORD +241 -0
- fastapi_fullstack-0.1.7.dist-info/WHEEL +4 -0
- fastapi_fullstack-0.1.7.dist-info/entry_points.txt +2 -0
- fastapi_fullstack-0.1.7.dist-info/licenses/LICENSE +21 -0
- fastapi_gen/__init__.py +3 -0
- fastapi_gen/cli.py +442 -0
- fastapi_gen/config.py +356 -0
- fastapi_gen/generator.py +207 -0
- fastapi_gen/prompts.py +874 -0
- fastapi_gen/template/VARIABLES.md +276 -0
- fastapi_gen/template/cookiecutter.json +93 -0
- fastapi_gen/template/hooks/post_gen_project.py +355 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/.env.prod.example +56 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +150 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/.gitignore +109 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/AGENTS.md +55 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/CLAUDE.md +99 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile +315 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/README.md +768 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.dockerignore +60 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.env.example +155 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.pre-commit-config.yaml +32 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/Dockerfile +56 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/env.py +76 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/script.py.mako +30 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/versions/.gitkeep +0 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic.ini +48 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/__init__.py +3 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py +447 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/__init__.py +23 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py +226 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langchain_assistant.py +226 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/prompts.py +10 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py +13 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/datetime_tool.py +17 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/__init__.py +1 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py +541 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/exception_handlers.py +98 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/router.py +10 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/__init__.py +9 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py +87 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/agent.py +902 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/auth.py +395 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/conversations.py +498 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/health.py +227 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/items.py +275 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/oauth.py +205 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/sessions.py +168 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/users.py +333 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/webhooks.py +477 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/ws.py +46 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/versioning.py +221 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/__init__.py +14 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/redis.py +88 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/__init__.py +117 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/cleanup.py +75 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/example.py +28 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/seed.py +266 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/__init__.py +5 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/cache.py +23 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py +267 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/csrf.py +153 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/exceptions.py +122 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/logfire_setup.py +101 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/middleware.py +99 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/oauth.py +23 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/rate_limit.py +58 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/sanitize.py +271 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/security.py +102 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/__init__.py +7 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/base.py +41 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py +31 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/conversation.py +319 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/item.py +96 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/session.py +126 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/user.py +218 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/webhook.py +244 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/session.py +130 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/main.py +334 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/__init__.py +9 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/base.py +73 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py +49 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/base.py +154 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/conversation.py +838 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/item.py +222 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/session.py +318 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py +322 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/webhook.py +358 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py +50 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/base.py +57 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/conversation.py +192 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/item.py +52 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/session.py +42 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/token.py +31 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/user.py +64 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/webhook.py +89 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/__init__.py +38 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/conversation.py +850 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/item.py +246 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/session.py +333 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/user.py +432 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/webhook.py +561 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/__init__.py +5 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/celery_app.py +64 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/taskiq_app.py +38 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/__init__.py +25 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/examples.py +106 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/schedules.py +29 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/taskiq_examples.py +92 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/__init__.py +1 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/commands.py +438 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml +180 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/scripts/.gitkeep +0 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/__init__.py +1 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/__init__.py +1 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_auth.py +242 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_exceptions.py +151 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_health.py +113 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_items.py +310 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_users.py +253 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/conftest.py +151 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_admin.py +890 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_agents.py +261 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_clients.py +183 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_commands.py +173 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_core.py +143 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_pipelines.py +118 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_repositories.py +181 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_security.py +124 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_services.py +363 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_worker.py +85 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml +242 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.frontend.yml +31 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml +435 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml +241 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docs/adding_features.md +132 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docs/architecture.md +63 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docs/patterns.md +161 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docs/testing.md +120 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.dockerignore +40 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.env.example +12 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.gitignore +45 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierignore +19 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierrc +11 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/Dockerfile +44 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/README.md +648 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.setup.ts +49 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.spec.ts +134 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts +207 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/home.spec.ts +73 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/instrumentation.ts +14 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json +84 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json +84 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/next.config.ts +76 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json +69 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/playwright.config.ts +101 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/postcss.config.mjs +7 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/layout.tsx +11 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/login/page.tsx +5 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/register/page.tsx +5 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/chat/page.tsx +48 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/dashboard/page.tsx +99 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/layout.tsx +17 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/profile/page.tsx +152 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/auth/callback/page.tsx +113 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/layout.tsx +46 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/page.tsx +73 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/login/route.ts +58 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/logout/route.ts +24 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/me/route.ts +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/oauth-callback/route.ts +50 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/refresh/route.ts +54 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/register/route.ts +26 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/messages/route.ts +41 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/route.ts +108 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/route.ts +73 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/health/route.ts +21 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css +323 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx +22 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/providers.tsx +29 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts +2 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx +120 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx +153 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx +234 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx +72 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx +328 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/copy-button.tsx +46 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts +11 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/local-conversation-sidebar.tsx +295 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/markdown-content.tsx +167 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-item.tsx +79 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx +18 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx +79 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/google-icon.tsx +32 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/index.ts +3 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/language-switcher.tsx +97 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx +65 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/index.ts +2 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx +82 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/index.ts +7 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-provider.tsx +53 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-toggle.tsx +105 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/badge.tsx +35 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.test.tsx +75 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.tsx +56 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/card.tsx +82 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts +13 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/input.tsx +21 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/label.tsx +21 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/sheet.tsx +109 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts +7 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-auth.ts +97 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts +203 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-conversations.ts +181 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-local-chat.ts +165 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-websocket.ts +105 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/i18n.ts +37 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/api-client.ts +90 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/constants.ts +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/server-api.ts +78 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.test.ts +44 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.ts +44 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/middleware.ts +31 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.test.ts +72 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.ts +64 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-sidebar-store.ts +17 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-store.ts +65 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/conversation-store.ts +76 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/index.ts +9 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/local-chat-store.ts +255 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/sidebar-store.ts +17 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/theme-store.ts +44 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/api.ts +27 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/auth.ts +52 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts +83 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/conversation.ts +49 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/index.ts +10 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/tsconfig.json +28 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.config.ts +36 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.setup.ts +56 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
fastapi_gen/__init__.py,sha256=KO63JpxBpq1-pKZUxhgGQ_1b5Xu0GWOeNnfCfKJCkTI,83
|
|
2
|
+
fastapi_gen/cli.py,sha256=IOUoAF54yNur8yTIm5OpbKLExu5ehGrKWjQcG0Fr51Y,15731
|
|
3
|
+
fastapi_gen/config.py,sha256=FD8d5Py24jIWlDa_UqUMn-2490WGCXHdsPN_RMjjhKs,13346
|
|
4
|
+
fastapi_gen/generator.py,sha256=mTrdRNjCkm8TO6l165oA3AifrMtOKiS_7e8k30-Ic3Q,7403
|
|
5
|
+
fastapi_gen/prompts.py,sha256=ETB0HRzi3HWxGVMywzEoH5fR217gGXDLqYzqKnYfg0c,27757
|
|
6
|
+
fastapi_gen/template/VARIABLES.md,sha256=LRxs3tuNWMF_knTIVBuIRN_Q2noRELOBF_mKuT-Sl_Y,12984
|
|
7
|
+
fastapi_gen/template/cookiecutter.json,sha256=1iMy3TcfCYQvFNfdYzRH_Y08ubGAsjtcVCdNYYYEtNU,2690
|
|
8
|
+
fastapi_gen/template/hooks/post_gen_project.py,sha256=3igpUKF6KLp3LQqPWmfkmzN_p_VfLTYD0pgKoDijEl8,13924
|
|
9
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/.env.prod.example,sha256=XYirMiKHvV7OQ_E19bs17OOzis3Swlb_mR2W9VQ3nHc,1400
|
|
10
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/.gitignore,sha256=InfbjRDaumEu7EsgiUiBEbDAb8uwcJV2j6Mt2Y1EcIU,1091
|
|
11
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/AGENTS.md,sha256=bQAXADBmMDuxT57Fw8BwNnuN1lOGY4NLgDlXPycfvTE,1432
|
|
12
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/CLAUDE.md,sha256=kz5f9rrzuRpMrN228ULj49rUUBWmchvPLtbyk2hwuMU,2929
|
|
13
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile,sha256=kgHIPSDVaTQrZZR__fVpziZZWzjtQDpfPYsTGOmJ6BM,9352
|
|
14
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/README.md,sha256=hnTtD1Jch9O9mI1O2Lf6QgnC6niC6uLq3gm9HWLnxfM,24236
|
|
15
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml,sha256=2Lnu8rjR_HVGZszEOMWZ30CQiZpK-b3GBdvEWrW30FM,6232
|
|
16
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.frontend.yml,sha256=4EpP7yqPXUj8K_-fYEjZLZdBMsPuDZpblsamNQRxUgk,1069
|
|
17
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml,sha256=VdGUlTaas23zXaKRWqZVMGCyhMk-aGOQBANK4tNZp7s,14177
|
|
18
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml,sha256=TzNNGBU7BWcBttnTjwGEbiSXMRJpc0UAc4FA1KzPW3o,6190
|
|
19
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml,sha256=MuR0odXZfg49c9q0eSqtSF5WzhneR8MMJhOzRM7-29Q,3789
|
|
20
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.dockerignore,sha256=_iRaYQqTvt8_2yhJZUp60PPaL5XLiUFg0OSa-J_9XIQ,523
|
|
21
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.env.example,sha256=uYGdLYedTIti20UAkWsBtMFAPZ8U7qmipPgcPMUUsiY,3536
|
|
22
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.pre-commit-config.yaml,sha256=KL9PoA9VtzqzL3M99O_0JPyVh6uo_Pp52JflfzCK7qA,821
|
|
23
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/Dockerfile,sha256=cDwsmfoQzXZ220-oFZUmomfg0Plo-Z5sTRzoo2jxuiY,1529
|
|
24
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic.ini,sha256=Ol5tRsSTj20-C-9YOyQV17oEPFhPRi0aY859ZNc3cUs,872
|
|
25
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml,sha256=Xze6cTsBsv7pCS9WO5M8IEzksCt6NvPlj-TrrTj5bns,4807
|
|
26
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/env.py,sha256=z14Zu3SXTMMqOkwGht54av8u7UBBMCry4EuPHCcgfX4,1939
|
|
27
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/script.py.mako,sha256=zYHP43PVmdbq194tp6gdxIhFFGUF2fecyFtL012Ig8A,752
|
|
28
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/versions/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/__init__.py,sha256=vNnuyVXC5oZ3yq46meWLNhkUYlMgod70TgvWyvgNhBk,68
|
|
30
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py,sha256=t-6ADK4jjVjblQkWFeXIixbRFMHyCyVckqSFrvA4NdI,14014
|
|
31
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/main.py,sha256=7zb8nDh9h7WhJJkVrj7qU3bYqg8FAahxqFxVBH9IdgA,10337
|
|
32
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/__init__.py,sha256=WWJoWoXqRuliz946je3JxWnIkc7UrvOy5GCb0hr6rBQ,756
|
|
33
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py,sha256=8diknxhBhFCEGGO6FPLosgwGVmrgEouEOt67Mv7l4AY,7170
|
|
34
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langchain_assistant.py,sha256=YXgQB67uH3WB58gTpnUiE4yqFJwgc7vTBhH2_VxrAKM,6831
|
|
35
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/prompts.py,sha256=XA-6oNqTKHWi1MQYtby-PqDC0Sy9LZvYizl5-UpeqMg,284
|
|
36
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py,sha256=ZYuSAD6eFLP3QrIkZ6VSC8GM_FNlPflHplCo2qRFQPQ,375
|
|
37
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/datetime_tool.py,sha256=JhSwnmbdbw1Aockl4woYbAKAVjOEV-W3e92B1FGFkc8,444
|
|
38
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/__init__.py,sha256=NeESK8RjcyjY9KL1c9H2jIw34RpWmtlHgd8rhPBuolo,18
|
|
39
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py,sha256=zoonX8pcFwvtmwVR5tsKrO7L5sGrYhj-AkM46_WyS8Q,15776
|
|
40
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/exception_handlers.py,sha256=8dyr19ABd9DRLGgXqRgb7T9zWD4XFjRzkWJ8jsLa0ao,2712
|
|
41
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/router.py,sha256=8E0e0Oef6KrB6raDgrV0Lj-tPKRiQ-5UlGM3yGnz50Q,233
|
|
42
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/versioning.py,sha256=6O8-Bf6RwF5syME-0RFupmtoyXuIQOl2Q3jmLP-g5HM,7110
|
|
43
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/__init__.py,sha256=wIJD_xpViBStOBb4iWBX_hxdPfSKJyAGlcOw81NTWXo,207
|
|
44
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py,sha256=jISsw5fOhd32mr4hdAFetoZ5eVcFRKmEIiIu21V0Icw,2846
|
|
45
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/agent.py,sha256=TpWbFlxBrTfTv0NfkHY8_kMT_paeMXTKkKxRoOa-Dmc,40998
|
|
46
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/auth.py,sha256=lF_vfrPd_x7C-049FK8dht4lC-pKmwefV3viP7KDlrI,12946
|
|
47
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/conversations.py,sha256=tFCZG81hdPQvImDkmaMM31Qq5coRCdrCgXd35nY-IwU,14368
|
|
48
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/health.py,sha256=dFJI0ZpC4I8yXDA4RPg8pZYoFJ9PBxRcB5SvWXsz6Gg,6512
|
|
49
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/items.py,sha256=YWoLNEbjyaERuiy91coHRTIHsG28pEiBxMUo4M4c2yo,6743
|
|
50
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/oauth.py,sha256=ok6b4BNXAD_p5hJ12hIjIFFc90q_4x5ouXqXLdIT6Ak,6926
|
|
51
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/sessions.py,sha256=RaTjCVCwIdZYAByYOadb79SLAmQlJTMz46S8jLkH1OE,4869
|
|
52
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/users.py,sha256=hu1OBOq6DBPgpmpkO9ervN_PcSoh1bVBJ8dcrda-lsk,8468
|
|
53
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/webhooks.py,sha256=0pC2piprVjv5pxcLeaavpINbsstCFOcdtsoHP2hLl2c,13237
|
|
54
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/ws.py,sha256=aYPzemixnwwH0gOazhnk1tcNNQyz8WW11kTv8vatF90,1426
|
|
55
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/__init__.py,sha256=gA4EUVDQQoTzeaLzFHZEA6Ps0eO7eo8NYjhNUDkzwzs,281
|
|
56
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/redis.py,sha256=SiOE_YSSlIMsvP7BM17ZG3z35dunUwWHrMpbIc3UeOY,2636
|
|
57
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/__init__.py,sha256=qTHo8rqGxoWGVyi5t1Z99zP1invUw_9osgQ7nLGEb6A,3032
|
|
58
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/cleanup.py,sha256=ATNo0N_ys__81j5hXGzE5kjBfd9AXCdx7JQPIKebzIg,2447
|
|
59
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/example.py,sha256=sx49u9oUIqvTfkurkIrFsZ4HFP1946kclkNVp6-zW28,733
|
|
60
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/seed.py,sha256=OMgE9bAgXsPI1OeHInc58sjO7FgTx_bUmpyd2WK7gXI,9342
|
|
61
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/__init__.py,sha256=0KTMN04rekcigOT6xO5DRXZ_Hj5vVBPvNBVYIQ6FGeg,106
|
|
62
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/cache.py,sha256=VYZfvIdLdtb1Y8h09IoxqPkDyG8pZtY96hR15Hff8YM,626
|
|
63
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py,sha256=i-QU1hfqt7WcbEWIy-wnav8QCtapHWwz8RG_a_55VfU,8989
|
|
64
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/csrf.py,sha256=NMB7xWuj2tS69YJKFsILcU3J06gemGi6oFIwaUHIDCY,4914
|
|
65
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/exceptions.py,sha256=jjsFTjpqRxlp4XU2NR4lK_hmteJLZcO3DKJIZZ9T2Pk,2842
|
|
66
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/logfire_setup.py,sha256=hMCIK7pIJx30RmJi9pLNP0XWTMrPld2SSMvSGMTUG-s,2183
|
|
67
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/middleware.py,sha256=FfaZVeTY1GQUr3tRR_sf7zgHJ1PBX-zQJLkGyRQgMp0,3344
|
|
68
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/oauth.py,sha256=aAv64WrGyX7WR6XXce2SJ2l02uxgtLemd11Ilqx4dkE,597
|
|
69
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/rate_limit.py,sha256=emmc2orBEIT6yfrZvy1jxdr52_eVawYAQJx9MiFsQKk,1689
|
|
70
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/sanitize.py,sha256=wQn3h1pFL3aqemr6W2jWMqGPJGVnb8ipZwLOwHdr6aI,7372
|
|
71
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/security.py,sha256=AqT0q6y1PmhyhZeV97Ujtc2PQx8EdUKMeAa2VC2sCQY,2769
|
|
72
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/__init__.py,sha256=zBa6f3gUffZ1vMyxnqmWVPtW7YI05rbzmgibbUwmN4s,151
|
|
73
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/base.py,sha256=luNUjdB1nPU-6cWdUzdpuUdOG0chponk3O7MpXIEPZQ,1190
|
|
74
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/session.py,sha256=am1aFndCCNOJ3fGn3e7H4cZZi-fsUnWPsTEy2h-GzAY,3075
|
|
75
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py,sha256=PubozE1RaMhf4U0aGNAiLkNHpOAH1hNsrO5IRuro8cc,1134
|
|
76
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/conversation.py,sha256=6OY79EeIBvy9x6noc0fwHK26rkIoF7yv5y2P6cw8umk,10761
|
|
77
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/item.py,sha256=LTWMetmbFIqlNnCJDsLQE8usct-cnvsj-SsXRh559QA,2889
|
|
78
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/session.py,sha256=dsazLLu5RFguzyg8e60fua2HnLYWcBK6te8oc3wkNA4,4423
|
|
79
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/user.py,sha256=8j_-NUB5lyDLSqYvxSdeJtxZmDefWJROsmxj2duk_Fk,6651
|
|
80
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/webhook.py,sha256=gw-rrqNIsGeBzNUxLUVevF5E-ZtAKXfBh1TvWXFckeE,7893
|
|
81
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/__init__.py,sha256=aUxx4qSMxaxP9SygICOQvvcQgI75-zqP1cdGAGCmkdo,262
|
|
82
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/base.py,sha256=_CssyDyeqdJiBPN0tsx7E4q9Z1db5BRUweq6IAJbc6g,1944
|
|
83
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py,sha256=rNHPw6j2o1ppubBsms0r3F_0AbdHjDsUoaE0LsdATpM,1754
|
|
84
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/base.py,sha256=4rIFieAle9LO2fDB_s7BOw9bNSYA_NPwHv33hKBbD8I,4190
|
|
85
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/conversation.py,sha256=H1_N1qtefivNd-g8dcmRXUkcDdmqxdDq7DGMwj2zzcs,23140
|
|
86
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/item.py,sha256=USac17QKifFRqs65s_QEBgSZWgD8XlurnkGgVIyF3wU,4853
|
|
87
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/session.py,sha256=hSg3qBBSulcuYgQpAHByegDMR16WY-AqQvSf3DjJemY,8829
|
|
88
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py,sha256=JdS0sXJg08bwHLk5dJjjYVhRWE-1jW89GAVAqCE25AI,7652
|
|
89
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/webhook.py,sha256=1KLbmFj9fhEoNSWXbC2k940ssof00W99Av4sg0qXw-Y,9238
|
|
90
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py,sha256=GC_buyJRRpDKZLwFcX4EK4PMdYKdsZVjQJ77xWJD4C8,1956
|
|
91
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/base.py,sha256=iaYuUo0Jxo3jBOsFZtewPHL91t8Na6LcH4sd93P7uG8,1382
|
|
92
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/conversation.py,sha256=URn_CdM0E11a90VRaP1wVoZ-SlfSu_ER4jrNTBTN3cE,5399
|
|
93
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/item.py,sha256=pbGplhcx8mIZkE99oSM0NdYsmxwYBBfiNqNMTkPnk1Y,1234
|
|
94
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/session.py,sha256=sVwXvv7nhh4qnSF-SGIfPcESPg8Ghd_0LNhd4KtPmqo,897
|
|
95
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/token.py,sha256=FbjkjBbzWXXAeGT_55Jv5574Z9VcQbuyDj_CgUosNyo,606
|
|
96
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/user.py,sha256=yHA2GcOqER9XD1TdyEo_8VDEqYudb9rMk7pftYEdsxI,1581
|
|
97
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/webhook.py,sha256=OG1Cauhfj1h-RVqCO97vABO253uzHZ0htgNO1f1dFqs,1969
|
|
98
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/__init__.py,sha256=EOjL4YcFmpgYh-7rDv4VAD5zcA8t4ff-eAAabPNEK70,1378
|
|
99
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/conversation.py,sha256=at8UJ7jtYTcBjtyotGO6t1Qm4V56DSWGgxAldwDV7iY,26292
|
|
100
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/item.py,sha256=OnGnoPCOJE8YGSOM8soH_HN-J1z35OFA2XXuT8U9Urw,7146
|
|
101
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/session.py,sha256=BQbWMPuAnOL4_6YvXGmEgmmRg2HqtgM35Ue5bjGIAvo,11333
|
|
102
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/user.py,sha256=xsPpoGef3t-6dA1CQW_QRWP4rt_NI3ZYnbamv1BZ1bs,13809
|
|
103
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/webhook.py,sha256=xCygcLy4UpiCsybqUkQ8Ib3BJfsSceIZ8OfYSlxpjLs,17062
|
|
104
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/__init__.py,sha256=P5Ac2zozpWW1MwW3AoRstB-GEyOtPF011t44l74pF6s,145
|
|
105
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/celery_app.py,sha256=64eaF-rfTMsf60AsnvvJ1var8roNNG10DGCiIMvAXuA,1668
|
|
106
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/taskiq_app.py,sha256=XfCdeoG14FgABKnsH7b0a38IaQzc45z166WLKS4otd0,851
|
|
107
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/__init__.py,sha256=cWtcaSaaQIKjpbt8fHgL6w_Sh2eRRkssu76KiCdxMYE,692
|
|
108
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/examples.py,sha256=T-VHMulRamX0bbq0UDw4EKAGyNRHlM7sLorSfkiiojY,2433
|
|
109
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/schedules.py,sha256=oa6mpit4TXg_R4jTkncYuKakHMgOJuSopyMOnKWLdHo,887
|
|
110
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/taskiq_examples.py,sha256=7gVfUToHbphzCk8TzunDmDGyaW8dFT3F7DafoYdCr28,1929
|
|
111
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/__init__.py,sha256=Min6pv55Zp3DSWyXUNKNNE0KqrPNxCwMLDxfWrYtxK0,26
|
|
112
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/commands.py,sha256=GOgDrpC6HYL7UNgYlZoRjoNj1mmRcytYP6KZqC6DYYM,13101
|
|
113
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/scripts/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/__init__.py,sha256=xqsJPT1QR2TH_5GYK8tiHp-Lb29chxGsr147MWoLAZw,21
|
|
115
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/conftest.py,sha256=dHJhMgAoU6JBp-_-3JsOkqTgvCH9RD7flJy_z1-8JiI,4099
|
|
116
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_admin.py,sha256=0bR-5XlVyo2JaDuy02kfPqRW12dRAG3jhCDl8Qr-cEc,30802
|
|
117
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_agents.py,sha256=uhJg8LoKBc1qeBSwebO4B5-CiWjUNI7C0Oa5EPPanxc,9084
|
|
118
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_clients.py,sha256=qKU2z4YVQMWdnNE9aH5lnACsdzQ1G4fcE9_sK8x7K2U,6282
|
|
119
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_commands.py,sha256=45TvE15OGGd3p2HS4bpnUnVToW24L5rjMOQXaJpkWyk,5014
|
|
120
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_core.py,sha256=eU7FHHGCpW4eH8zK3fZvjN7EmM_Ys7C-DCBkJ1b6xRI,4107
|
|
121
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_pipelines.py,sha256=gyoD18adMZKHv-q8bKiSvJ2yYdUmKsTOaQ_hpQmorGY,4036
|
|
122
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_repositories.py,sha256=uaikldLNo95ukhzvlFmLHxHByioxwSdreyQ9grx1H3A,5748
|
|
123
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_security.py,sha256=6YJUtT9HqIkhcyAEmQSIiYNunNVC_hmsrfjscmdON-k,3752
|
|
124
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_services.py,sha256=tAm_8_CNbNdWgVJwTqDg6r-CXNI8DjV-o4DKtUQFZg4,13396
|
|
125
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_worker.py,sha256=rg-qqcZK9iroX6bnseFrb9WFNeHX-SwPUBPR2YbfhCg,2824
|
|
126
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/__init__.py,sha256=WV9U5TSWbUYHVA2F3CD7gfod4RdX8EM1s4ewEnwszr0,25
|
|
127
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_auth.py,sha256=AfpNTqSNVi8_sBy4-sAMmn-5U9ePhq5pcDkUzB3wpKQ,7207
|
|
128
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_exceptions.py,sha256=yTbtQ0jxj2Ah0zwNu831nSbd1Sb7yWIKwdlZhPzLBtQ,4599
|
|
129
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_health.py,sha256=XwkFvoezYip-YT977rlLB9o46uGV77MSijt_bNlowT0,3678
|
|
130
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_items.py,sha256=lFMdUaayDDEw7msuVj3po6pYa8TgvE9XjTKc-GiaWk4,9202
|
|
131
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_users.py,sha256=JLcPKnk14aPSyyWpjEHfFJcBBDEdHMLM41Tuua7nbnM,7343
|
|
132
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docs/adding_features.md,sha256=ZFz9VFo1S0i3LMbMszL4Wps9gxoPDAkJAjiHOhq3npE,3474
|
|
133
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docs/architecture.md,sha256=teK1lOMMiLJWBRGmj5HNsj8MvVAUcbeRTjMTevDKL6w,1901
|
|
134
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docs/patterns.md,sha256=MVUfe2lkLZoUqKIVmwk2YTksQ-OyOx1tIqn9hw3WQYI,3828
|
|
135
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/docs/testing.md,sha256=2vdwICbfw4Q6HcvJUpwpgpomXcAwr30kd0pcRjL14vA,2330
|
|
136
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.dockerignore,sha256=aPWb-zCIZu6TI0jiXFs481-eMrOO-FxVvRL3992jrDY,343
|
|
137
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.env.example,sha256=zdNGfQl6TPssMN8NV0wjpuqB90ZUHvKo2bDHLsGsvy0,516
|
|
138
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.gitignore,sha256=fZEN8HisQjcSmxEB3IDWoKA5dTYDzEAXLtqYKvdsprs,439
|
|
139
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierignore,sha256=wYnkkZcvXw2mtuFVzYAjH-eFldFkK5Xn26fsZZ19BK0,161
|
|
140
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierrc,sha256=cjszu9uAT0HddFAatvqg7KjdgnC99AGuOhZL9SE8eL8,227
|
|
141
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/Dockerfile,sha256=Gly4voeALJPlZznyYp0Z8gjzAHx59N2-BZlY4lR3xUA,891
|
|
142
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/README.md,sha256=rwJDETsecP8rtIzHW1S1c6H5UvYDcMq5y-GTMh4rr3E,20625
|
|
143
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/instrumentation.ts,sha256=KKUhYC1lApvs-Vtw9kkzqYiZBaW5axDvHhxeHznljM4,344
|
|
144
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/next.config.ts,sha256=KZfqQ0h9H76xnhvkO8Ee8g7Faw_Y9dkVDYZImCIEtSc,1745
|
|
145
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json,sha256=iZFdMka5HQEvWZfIyjjmrunLXdywhS9Gv2ucX45fBSw,2145
|
|
146
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/playwright.config.ts,sha256=KVU5cy9ASA9K0ylTbJcDTgS3q_VU5MsqH1-_rH3WiFI,2534
|
|
147
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/postcss.config.mjs,sha256=36x6wthtMmoOWtsCTnlDwYE5PtF6X8uPAxWyTH2m3d4,94
|
|
148
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/tsconfig.json,sha256=5e9WIUv-5NawO5gSJkGWK3ZBBTbHGqVQvt0wJJ8vEwo,622
|
|
149
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.config.ts,sha256=xCRc092WUV3SmCkIqs4-YJWqvTQk0hWVMnucyLApXKs,803
|
|
150
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.setup.ts,sha256=VkPwN2DE2TjgosXO4vgBFTusROfdmuoi9QqXtDy7pW0,1315
|
|
151
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.setup.ts,sha256=OyeeeylUxBClyZk-n8X6rd5_43yt3Tf0m8g9Og75rYk,1496
|
|
152
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.spec.ts,sha256=WgBZMrrJRDurowJ0GFAFmV1Ro1zLX5xZ2nNDGzrTuBs,4697
|
|
153
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts,sha256=xFAc7tktmHt_9js7UbjbkiBMcBFEZ4EXwmG7ffAVn4Q,6540
|
|
154
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/home.spec.ts,sha256=dTFTdCqIMXlmnQNvc9F4NhxOdloYThoWbRlJnFeWIzg,2156
|
|
155
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json,sha256=j_oMFCy00MsUe8BwI9DeHeVJpznhuGg7jD56SJ8hgvI,2484
|
|
156
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json,sha256=9Lwn1ywySlhIaK8JZWWl0gRp24Wg-EI5RQFtQ1z72xg,2544
|
|
157
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/i18n.ts,sha256=pV3IwoSno-oALoZqmrF-cxsQnn817vYJF2RX2dl1uJM,980
|
|
158
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/middleware.ts,sha256=H-v6UlYdCBTU9_vgzt77rWIVCsXUF7FGjr2RNH6UQHs,845
|
|
159
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css,sha256=_veK-g6B3XXFWBhXq75gWgpl3vE9IGpSsCT2mOsBt7g,6942
|
|
160
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx,sha256=PiGubH3sKHCdVzWEeFpiGs73Fl9zNJKFOqSpCMJ4rAQ,524
|
|
161
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/providers.tsx,sha256=FkSHLhFkZQA262ZzWgI80WwxVM8CjaI2YEsyZMrChvU,665
|
|
162
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/layout.tsx,sha256=cYyCaEalj1VLMrqPRZY77tIiJUH_Ol2Be0ZyzH0Qet8,1125
|
|
163
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/page.tsx,sha256=-Nr-9q6g5AHxrQALWl3purznBQVjVV3-c_1JCJnx0uk,2433
|
|
164
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/layout.tsx,sha256=3daccxNVbMRiM6L04Q2SSyjNR9tLzdiEGIpFgJOyq3M,221
|
|
165
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/login/page.tsx,sha256=iw5H4gmIm58t4pK9oVrWNBbDAIYGTvG9UeBBrIXDVGw,112
|
|
166
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/register/page.tsx,sha256=Lq1l_nvqbqmVH_9Rvo2tNBPK8nVzVuHYjInWEopAxmk,121
|
|
167
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/layout.tsx,sha256=G-dYy25QI2WeMZQUANvlk4jUyxWY1CQJiPcl7ssT9pY,409
|
|
168
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/chat/page.tsx,sha256=gQMVJeWQaCXEVufoV2E-Nwsg80NDR-sDpQprOdCT-_w,1467
|
|
169
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/dashboard/page.tsx,sha256=BPrl9Nv4VUMH0TNlrQNvFuGvX9epjCnyJKx6dB_HcR4,3318
|
|
170
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/profile/page.tsx,sha256=M3-BCvE-RrAqfMbLH-0VuORGbpf0laBGBOdhrUa61lc,5655
|
|
171
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/auth/callback/page.tsx,sha256=PsntMet4-K6t2VBRK7P8c4rXEhbUvFeU7kv0ln7-jF8,3349
|
|
172
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/login/route.ts,sha256=N95bhzBIXkSAxcUIHJb6pzUcwgImOeKNu6LNt3at4gQ,1753
|
|
173
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/logout/route.ts,sha256=p2vx0cL3w3_xcc3qsKaUQPlRuGQmTKue3pp3_zPT7js,549
|
|
174
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/me/route.ts,sha256=bLO4e2J9c60rgkwCeFuvhtasUW_geRDiaw4k86qL7vA,1091
|
|
175
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/oauth-callback/route.ts,sha256=N8oBybbaj3oKsVKbFANm3fWebI9NpFsAlGKKdkCy4Fo,1306
|
|
176
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/refresh/route.ts,sha256=xxQTMdR-o-S5jV_rxKyWIcUfpNpX6Nu0QviRbgq2OOY,1524
|
|
177
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/register/route.ts,sha256=3v-KAgPDhQ6nhDYT1dvWR8gkodBRIPK6MgYVq38oiKA,839
|
|
178
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/route.ts,sha256=vX55g9Ln68KIbYTI9qbauZdrbfruTnsKaISMiGRErb0,2176
|
|
179
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/route.ts,sha256=fitSwuvxPXTkTN4-jaa2YMtZKXHmm-BKkqpiaGJOeCo,3010
|
|
180
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/messages/route.ts,sha256=t2mhjNIqjxpYf4WuwncrSuJShbXIFV6mXG3kAQmDRfY,1225
|
|
181
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/health/route.ts,sha256=W2KbKll48cc044pOVMBHd_R-t9VFy0ntKj6-8vOcwLE,606
|
|
182
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/language-switcher.tsx,sha256=mZmZ34MriWkLCcYcDCy3kRpT_li_AocWeK7sFVYrjek,2837
|
|
183
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts,sha256=7h7J1ATCCYrVwGYr1j6k-TuVBxWKoLgmRwQS21tJF5Y,90
|
|
184
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx,sha256=_MX_XBLB22cvHWmvn_WUooATFqaFM-G4D8HKSVnJBsg,3760
|
|
185
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx,sha256=EofAzSHxNlM8LrRAKYmQ5-jVJnsnjy0ZERPXZ_22uxY,4911
|
|
186
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx,sha256=z9uB3lcctihCBGyqp15GB6YIUDphjDX2RRUAjZn8R0c,6958
|
|
187
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx,sha256=sJwS6E7zF_2K-z6nfHdVXhw71XLu5EY_7UQlsub13JE,2049
|
|
188
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx,sha256=lVDX8O_UP7UwCwr6grcZevo6Z04aafOEruTMSlH6giM,9318
|
|
189
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/copy-button.tsx,sha256=FELAI5pT_AI9RU3oP7sTJoIg-IqcC0PGAytMna0JTf8,1093
|
|
190
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts,sha256=QF891FMso3jTolplkISbjwL08kp-EvOVIGTbpiTxTGQ,583
|
|
191
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/local-conversation-sidebar.tsx,sha256=kOkTqlIaDq9lPyDldU6_SmpvAXYRTqhz-WkMfMwffj4,8281
|
|
192
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/markdown-content.tsx,sha256=aCftdRUJ1mROHFtegXZw5oNpOPt0ekIk-CIUhmbZZhk,4583
|
|
193
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-item.tsx,sha256=QMqvrJbvn7cDF6zSn2n6UyWtRe2rbh8qoPQDA5I6BKE,2724
|
|
194
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx,sha256=sF_lmB_5xo5VyGAjKJo96z4jznrJ4JYqoENO_2tVk-E,392
|
|
195
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx,sha256=WIY6o13Q8Grwj6ht4Fdehodr32Jbnve-XbkH2XcFD24,2763
|
|
196
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/google-icon.tsx,sha256=1N1bjOHSbRT0yinxoCZUTTc2aOTsjzNFRdSUNrll0J0,1073
|
|
197
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/index.ts,sha256=HHElTMcT04ZHmI9mX5_Rf0re7wRaI_HHTISocPlhFYM,100
|
|
198
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx,sha256=AURpcRohCKWOxGRYCHB3x7rvSInoT7w2K9iTjnS69Io,2332
|
|
199
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/index.ts,sha256=RGwTsrHR3iOA1uiHP71L_6DvaT3C-tLdeEjYLVNywm4,72
|
|
200
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx,sha256=wTc6GpVI_zeQM0DJ6acIiv2yKEE8REvZYwtjuV3vqoo,2459
|
|
201
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/index.ts,sha256=RkXg8_Iv6Mw2KcINLSaji3QKSrNnqKCP17my25-518M,217
|
|
202
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-provider.tsx,sha256=1QeGN1B5g6nJ-XDlrDIh9zDCjAZfxVOjRC0n-CLsw9g,1533
|
|
203
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-toggle.tsx,sha256=zEuJbhkN1ZxOCkc9RFdqoNbQ28OBuLxo25W6qcG23mA,2719
|
|
204
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/badge.tsx,sha256=H5Guparj6yLhD8wGDb1LfvZby99-VAm-2q0QFRjhejc,1145
|
|
205
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.test.tsx,sha256=_5exdfb2OdRc21epwBbKVegcHR3iOKerXWZAGNZdEn8,2346
|
|
206
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.tsx,sha256=5qrEqbjoWs8TpUh6Bq7UjDZRSPZROjJMppsocXgGwIc,2010
|
|
207
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/card.tsx,sha256=RZjMgqg6gi0yNH7daOWdE6A3F--WPD5_pKd7U5C4PVQ,1855
|
|
208
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts,sha256=9bKy6RZIB1bwiUPtha_UYm695hSLrOzKAmOQ9QJDR9w,358
|
|
209
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/input.tsx,sha256=zrewyulhYF_tlz7A8utJ59YMeDaBdIp8QkEfJG6DS8w,773
|
|
210
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/label.tsx,sha256=50KTBB-WrpTLTEV8aNN9y5KRokJZbF7VpFc_7gLCTxA,472
|
|
211
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/sheet.tsx,sha256=zdFQbRSWq1oLzWnp_flNFN24EEY8pHvG4KY47iugzgU,2295
|
|
212
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts,sha256=8Fm2aSVrCWazkE3PJ0K8cYjUrZw2VOTXvXg8CFUdDbo,327
|
|
213
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-auth.ts,sha256=e3KWyCC1sS6AHiPWX1XkW93-v1xJ1sbiqqpvf0RW_eM,2334
|
|
214
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts,sha256=WTbdDMChDYI5UvYPZrhBxq4JBHgwLLBb-uBZPvyncPo,5944
|
|
215
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-conversations.ts,sha256=_6jas8lDilJA-h-kozMxoGp9jGA4lNAQvHNANzvke6k,4935
|
|
216
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-local-chat.ts,sha256=eNzmxCeapKVAie7-3qQ5y1Eit8M7rFwHlFyHtFzcluA,4346
|
|
217
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-websocket.ts,sha256=wVOXjPF1uBULis4ec9O3gZkU_68rKMIjw3wtCJG5Fo4,2648
|
|
218
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/api-client.ts,sha256=X2x9mbmHfjWbsQEA1ILilHky5ak8QCj-owI65ZqrdEo,2275
|
|
219
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/constants.ts,sha256=fjMHkXcCsBp0Q4kDfRLbNEQBRd2kNmDhZaHuWmid_i0,847
|
|
220
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/server-api.ts,sha256=4e2SNaXoEEe1F4Z1SWLXvjHAzYOcK4QiG3QjyIYpr-g,1851
|
|
221
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.test.ts,sha256=S4hLcI8u5-sPixqyPyedi6mZRSjJlLhRTPkVY-8DV1g,1299
|
|
222
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.ts,sha256=bZ_gCiWlxvrEzbmHOFX8zhuRigCq1da2NZFpv4jyU-U,1090
|
|
223
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.test.ts,sha256=CUS0IQH_G7yBA5d8572_M2I10-xM-0nUTfXmweUsxIE,1975
|
|
224
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.ts,sha256=MS5dn4SwLf8BZ-z7iQTKlUCU3-KQjl0fBn6DIcqZ-1Q,1515
|
|
225
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-sidebar-store.ts,sha256=GBkD_ryKf2dlO6YIj-K85S9t9KuoGfs4tiUqZ0Uom4k,395
|
|
226
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-store.ts,sha256=I3FJM8lYsTOoqx9pNQPDfRUqDmda9CDJeb1Bt3zj0AU,1647
|
|
227
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/conversation-store.ts,sha256=HyG-Jk7EJN1eNziM3iJtD6zDwvvzPmC_KL6OibQsW2Q,2333
|
|
228
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/index.ts,sha256=MAkE-5M4Cwy9LJV2rI9iRgCHud_Owc7528CLdDXzJOI,463
|
|
229
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/local-chat-store.ts,sha256=QvfwgyhqquAVcIRZrCXuBxOcFCnsCfg2n7PlFBF9nKM,7224
|
|
230
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/sidebar-store.ts,sha256=4MB94K5Qld_Tz8DWi2a6_eJ-5LXUR4P9-G1FlNbRAd8,383
|
|
231
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/theme-store.ts,sha256=-xY0kYXZMks-Qh1qrcMDwcdh_svF1ww498aR3u7MKOU,985
|
|
232
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/api.ts,sha256=h_WXzUWJ67lDJ2hKi5It2hlTWhGnm_YMa0nTYJn3TDM,396
|
|
233
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/auth.ts,sha256=anNUBMNJ5Y3zlX6e174Acre7P2lo4Vfa4w0KSJW-sRo,839
|
|
234
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts,sha256=J4B19_ReDlTcPXJQDzlxxvlhVZjPQ5tRJHeIUTjEEcc,1463
|
|
235
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/conversation.ts,sha256=0kBX-7qYowZOrBGMDjH_7dA8FEujtXqlfbRBpT4FBng,1150
|
|
236
|
+
fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/index.ts,sha256=W0lBPMjlZ0wt-eqGBqQvt648q90n2i9v0Bh25pdm8S4,234
|
|
237
|
+
fastapi_fullstack-0.1.7.dist-info/METADATA,sha256=aiYIcEmM1_UP-xb8Ah1dB6rxqp4-iQHVlVfYAeFfCyU,23837
|
|
238
|
+
fastapi_fullstack-0.1.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
239
|
+
fastapi_fullstack-0.1.7.dist-info/entry_points.txt,sha256=s9JXrISZp8LMYJGeVofOAd1wPTzpq-jwjSgSf4hWzjs,59
|
|
240
|
+
fastapi_fullstack-0.1.7.dist-info/licenses/LICENSE,sha256=bL4JuK_rcA8y__Gg7PEuTs3g2Qf6VvSz2w2Jajd6nVU,1063
|
|
241
|
+
fastapi_fullstack-0.1.7.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Vstorm
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
fastapi_gen/__init__.py
ADDED