fastapi-fullstack 0.1.2__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.
Files changed (221) hide show
  1. fastapi_fullstack-0.1.2.dist-info/METADATA +545 -0
  2. fastapi_fullstack-0.1.2.dist-info/RECORD +221 -0
  3. fastapi_fullstack-0.1.2.dist-info/WHEEL +4 -0
  4. fastapi_fullstack-0.1.2.dist-info/entry_points.txt +2 -0
  5. fastapi_fullstack-0.1.2.dist-info/licenses/LICENSE +21 -0
  6. fastapi_gen/__init__.py +3 -0
  7. fastapi_gen/cli.py +256 -0
  8. fastapi_gen/config.py +255 -0
  9. fastapi_gen/generator.py +181 -0
  10. fastapi_gen/prompts.py +648 -0
  11. fastapi_gen/template/cookiecutter.json +76 -0
  12. fastapi_gen/template/hooks/post_gen_project.py +111 -0
  13. fastapi_gen/template/{{cookiecutter.project_slug}}/.env.example +136 -0
  14. fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +150 -0
  15. fastapi_gen/template/{{cookiecutter.project_slug}}/.gitignore +108 -0
  16. fastapi_gen/template/{{cookiecutter.project_slug}}/CLAUDE.md +357 -0
  17. fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile +298 -0
  18. fastapi_gen/template/{{cookiecutter.project_slug}}/README.md +723 -0
  19. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.dockerignore +60 -0
  20. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.pre-commit-config.yaml +32 -0
  21. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/Dockerfile +56 -0
  22. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/env.py +76 -0
  23. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/script.py.mako +30 -0
  24. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/versions/.gitkeep +0 -0
  25. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic.ini +48 -0
  26. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/__init__.py +3 -0
  27. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py +115 -0
  28. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/__init__.py +13 -0
  29. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py +202 -0
  30. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py +13 -0
  31. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/datetime_tool.py +17 -0
  32. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/__init__.py +1 -0
  33. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py +528 -0
  34. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/exception_handlers.py +85 -0
  35. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/router.py +10 -0
  36. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/__init__.py +9 -0
  37. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py +87 -0
  38. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/agent.py +448 -0
  39. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/auth.py +395 -0
  40. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/conversations.py +490 -0
  41. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/health.py +227 -0
  42. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/items.py +275 -0
  43. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/oauth.py +205 -0
  44. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/sessions.py +168 -0
  45. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/users.py +333 -0
  46. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/webhooks.py +477 -0
  47. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/ws.py +46 -0
  48. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/versioning.py +221 -0
  49. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/__init__.py +14 -0
  50. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/redis.py +88 -0
  51. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/__init__.py +117 -0
  52. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/cleanup.py +75 -0
  53. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/example.py +28 -0
  54. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/seed.py +266 -0
  55. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/__init__.py +5 -0
  56. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/cache.py +23 -0
  57. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py +247 -0
  58. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/csrf.py +153 -0
  59. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/exceptions.py +122 -0
  60. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/logfire_setup.py +101 -0
  61. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/middleware.py +99 -0
  62. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/oauth.py +23 -0
  63. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/rate_limit.py +58 -0
  64. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/sanitize.py +271 -0
  65. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/security.py +102 -0
  66. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/__init__.py +7 -0
  67. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/base.py +41 -0
  68. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py +31 -0
  69. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/conversation.py +319 -0
  70. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/item.py +96 -0
  71. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/session.py +126 -0
  72. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/user.py +218 -0
  73. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/webhook.py +244 -0
  74. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/session.py +113 -0
  75. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/main.py +326 -0
  76. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/__init__.py +9 -0
  77. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/base.py +73 -0
  78. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py +49 -0
  79. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/base.py +154 -0
  80. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/conversation.py +760 -0
  81. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/item.py +222 -0
  82. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/session.py +318 -0
  83. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py +322 -0
  84. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/webhook.py +358 -0
  85. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py +50 -0
  86. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/base.py +57 -0
  87. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/conversation.py +195 -0
  88. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/item.py +52 -0
  89. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/session.py +42 -0
  90. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/token.py +31 -0
  91. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/user.py +64 -0
  92. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/webhook.py +89 -0
  93. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/__init__.py +38 -0
  94. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/conversation.py +797 -0
  95. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/item.py +246 -0
  96. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/session.py +333 -0
  97. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/user.py +432 -0
  98. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/webhook.py +561 -0
  99. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/__init__.py +5 -0
  100. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/celery_app.py +64 -0
  101. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/taskiq_app.py +38 -0
  102. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/__init__.py +25 -0
  103. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/examples.py +106 -0
  104. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/schedules.py +29 -0
  105. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/taskiq_examples.py +92 -0
  106. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/__init__.py +1 -0
  107. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/commands.py +438 -0
  108. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml +158 -0
  109. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/scripts/.gitkeep +0 -0
  110. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/__init__.py +1 -0
  111. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/__init__.py +1 -0
  112. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_auth.py +242 -0
  113. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_exceptions.py +151 -0
  114. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_health.py +113 -0
  115. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_items.py +310 -0
  116. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_users.py +253 -0
  117. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/conftest.py +151 -0
  118. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_agents.py +121 -0
  119. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_clients.py +183 -0
  120. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_commands.py +173 -0
  121. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_core.py +143 -0
  122. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_pipelines.py +118 -0
  123. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_repositories.py +181 -0
  124. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_security.py +124 -0
  125. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_services.py +363 -0
  126. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_worker.py +85 -0
  127. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml +242 -0
  128. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.frontend.yml +31 -0
  129. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml +382 -0
  130. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml +241 -0
  131. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.env.example +12 -0
  132. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.gitignore +45 -0
  133. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierignore +19 -0
  134. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierrc +11 -0
  135. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/Dockerfile +44 -0
  136. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/README.md +693 -0
  137. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.setup.ts +49 -0
  138. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.spec.ts +134 -0
  139. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts +207 -0
  140. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/home.spec.ts +73 -0
  141. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/instrumentation.ts +14 -0
  142. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json +84 -0
  143. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json +84 -0
  144. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/next.config.ts +76 -0
  145. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json +66 -0
  146. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/playwright.config.ts +101 -0
  147. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/postcss.config.mjs +7 -0
  148. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/layout.tsx +11 -0
  149. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/login/page.tsx +5 -0
  150. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/register/page.tsx +5 -0
  151. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/chat/page.tsx +20 -0
  152. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/dashboard/page.tsx +99 -0
  153. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/layout.tsx +17 -0
  154. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/profile/page.tsx +156 -0
  155. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/login/route.ts +58 -0
  156. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/logout/route.ts +24 -0
  157. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/me/route.ts +39 -0
  158. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/oauth-callback/route.ts +50 -0
  159. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/refresh/route.ts +54 -0
  160. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/register/route.ts +26 -0
  161. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/messages/route.ts +41 -0
  162. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/route.ts +108 -0
  163. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/route.ts +73 -0
  164. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/health/route.ts +21 -0
  165. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/auth/callback/page.tsx +96 -0
  166. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css +108 -0
  167. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx +25 -0
  168. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/page.tsx +73 -0
  169. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/providers.tsx +29 -0
  170. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts +2 -0
  171. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx +120 -0
  172. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx +153 -0
  173. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx +135 -0
  174. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx +73 -0
  175. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx +261 -0
  176. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts +8 -0
  177. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-item.tsx +63 -0
  178. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx +18 -0
  179. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx +60 -0
  180. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/google-icon.tsx +32 -0
  181. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/index.ts +3 -0
  182. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/language-switcher.tsx +97 -0
  183. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx +45 -0
  184. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/index.ts +2 -0
  185. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx +48 -0
  186. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/index.ts +7 -0
  187. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-provider.tsx +53 -0
  188. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-toggle.tsx +83 -0
  189. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/badge.tsx +35 -0
  190. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.test.tsx +75 -0
  191. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.tsx +54 -0
  192. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/card.tsx +82 -0
  193. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts +12 -0
  194. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/input.tsx +21 -0
  195. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/label.tsx +21 -0
  196. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts +6 -0
  197. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-auth.ts +97 -0
  198. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts +203 -0
  199. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-conversations.ts +175 -0
  200. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-websocket.ts +105 -0
  201. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/i18n.ts +32 -0
  202. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/api-client.ts +90 -0
  203. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/constants.ts +39 -0
  204. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/server-api.ts +78 -0
  205. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.test.ts +44 -0
  206. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.ts +44 -0
  207. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/middleware.ts +33 -0
  208. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.test.ts +72 -0
  209. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.ts +48 -0
  210. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-store.ts +65 -0
  211. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/conversation-store.ts +76 -0
  212. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/index.ts +6 -0
  213. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/theme-store.ts +44 -0
  214. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/api.ts +27 -0
  215. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/auth.ts +52 -0
  216. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts +81 -0
  217. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/conversation.ts +49 -0
  218. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/index.ts +10 -0
  219. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/tsconfig.json +28 -0
  220. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.config.ts +36 -0
  221. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.setup.ts +56 -0
@@ -0,0 +1,221 @@
1
+ fastapi_gen/__init__.py,sha256=KO63JpxBpq1-pKZUxhgGQ_1b5Xu0GWOeNnfCfKJCkTI,83
2
+ fastapi_gen/cli.py,sha256=_QPmOJUZZEWAxY0pCtfdWtZkPY8DaI-cR56n_pDrzaw,8025
3
+ fastapi_gen/config.py,sha256=MdkICiMjU-APkC6H6F8kYsAyjYaAKLfmzTXUxEK1Vaw,8933
4
+ fastapi_gen/generator.py,sha256=d73hev95SwhF9VB1_XrAgZ3mTdZZ_kn2NwDT8Jpnt9U,6623
5
+ fastapi_gen/prompts.py,sha256=fM6VS0SXlZ5hTzGn5MXWgmDWk0z0SRyeKZGMwG37uTE,20695
6
+ fastapi_gen/template/cookiecutter.json,sha256=W1H4gHosHsXpjEwYB75V2N6yjVVxA1uNLYXO0KfjWBI,2105
7
+ fastapi_gen/template/hooks/post_gen_project.py,sha256=n4BmUasXSYu0q5vWyLFDCKPJabFlKl8L3WvdbnYSzTo,3802
8
+ fastapi_gen/template/{{cookiecutter.project_slug}}/.env.example,sha256=pcsw9J8TldrVoD5gW9dkDnczH8Bh1hlxKRxnye9tn68,2929
9
+ fastapi_gen/template/{{cookiecutter.project_slug}}/.gitignore,sha256=A7-ZtFqjbXfaRPq8hMM8EmwAB2HfD_eEK1yVc6zp8xQ,1081
10
+ fastapi_gen/template/{{cookiecutter.project_slug}}/CLAUDE.md,sha256=ehBGUF2nkz6KlYu8w5rdBoO2tA0c83HATwgLrSuQJQg,8426
11
+ fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile,sha256=UkrZndOFkfi_xzE-BSUbylrdSp1cnLyN_CoXsq07uso,8660
12
+ fastapi_gen/template/{{cookiecutter.project_slug}}/README.md,sha256=9erNOSaVxbDUki2altO6arUI-R89JVdniciZkDS2dw0,18960
13
+ fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml,sha256=ow8qXuPMjOIV4sCpTEhNyo6jg3qMEVt2ix1bVdJH2nk,6172
14
+ fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.frontend.yml,sha256=4EpP7yqPXUj8K_-fYEjZLZdBMsPuDZpblsamNQRxUgk,1069
15
+ fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml,sha256=HXVNNVRrYI7-VTqdNtfczf52UUrfKzG1TlF9maPWa80,11667
16
+ fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml,sha256=FSVqM2UsRBPyQiJEZXsKugvJ0VItloejwvP6RB-0SIA,6130
17
+ fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml,sha256=MuR0odXZfg49c9q0eSqtSF5WzhneR8MMJhOzRM7-29Q,3789
18
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.dockerignore,sha256=_iRaYQqTvt8_2yhJZUp60PPaL5XLiUFg0OSa-J_9XIQ,523
19
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.pre-commit-config.yaml,sha256=KL9PoA9VtzqzL3M99O_0JPyVh6uo_Pp52JflfzCK7qA,821
20
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/Dockerfile,sha256=cDwsmfoQzXZ220-oFZUmomfg0Plo-Z5sTRzoo2jxuiY,1529
21
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic.ini,sha256=Ol5tRsSTj20-C-9YOyQV17oEPFhPRi0aY859ZNc3cUs,872
22
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml,sha256=0bd1DFqqH0ipIzvp5R_7WAbPxDjhH9ShDiFZGKYrUkM,4096
23
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/env.py,sha256=z14Zu3SXTMMqOkwGht54av8u7UBBMCry4EuPHCcgfX4,1939
24
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/script.py.mako,sha256=zYHP43PVmdbq194tp6gdxIhFFGUF2fecyFtL012Ig8A,752
25
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/alembic/versions/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/__init__.py,sha256=vNnuyVXC5oZ3yq46meWLNhkUYlMgod70TgvWyvgNhBk,68
27
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py,sha256=u75wKQEwj0-oI1mMKX9ShCWfr6h9P-9QfZ7ME7HXvqE,3701
28
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/main.py,sha256=032r4zRHIs3fGbrINaz3wfoVpGc4CH48P1dHkNnZC0M,10026
29
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/__init__.py,sha256=8ZYswVoYnZnHDzXJgqGCY0CyiLCe7osmKYdBbFkGp98,345
30
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py,sha256=c7PB7liQ_4M1oM_3pB8RtgF_n3oRP86zxx-MKhZ7vck,6324
31
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py,sha256=ZYuSAD6eFLP3QrIkZ6VSC8GM_FNlPflHplCo2qRFQPQ,375
32
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/datetime_tool.py,sha256=JhSwnmbdbw1Aockl4woYbAKAVjOEV-W3e92B1FGFkc8,444
33
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/__init__.py,sha256=NeESK8RjcyjY9KL1c9H2jIw34RpWmtlHgd8rhPBuolo,18
34
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py,sha256=rXB-xLeWQd4zUCS2CUrFDRCgKcVSlk3AxdNEbqzzPbM,15379
35
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/exception_handlers.py,sha256=hm3nZCBiL_4QOwbP13LNjle-faZ4OwMScvgXe4o4XNg,2352
36
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/router.py,sha256=8E0e0Oef6KrB6raDgrV0Lj-tPKRiQ-5UlGM3yGnz50Q,233
37
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/versioning.py,sha256=6O8-Bf6RwF5syME-0RFupmtoyXuIQOl2Q3jmLP-g5HM,7110
38
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/__init__.py,sha256=wIJD_xpViBStOBb4iWBX_hxdPfSKJyAGlcOw81NTWXo,207
39
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py,sha256=jISsw5fOhd32mr4hdAFetoZ5eVcFRKmEIiIu21V0Icw,2846
40
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/agent.py,sha256=-8MWBy0FU_CqC3wt_Au1kUte3yR-vkJKW5a95plBzwI,19966
41
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/auth.py,sha256=lF_vfrPd_x7C-049FK8dht4lC-pKmwefV3viP7KDlrI,12946
42
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/conversations.py,sha256=psq3xVENv87DDdINpeEj4w9SPKe_cAaV_Q_M2VWxBwo,14026
43
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/health.py,sha256=dFJI0ZpC4I8yXDA4RPg8pZYoFJ9PBxRcB5SvWXsz6Gg,6512
44
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/items.py,sha256=YWoLNEbjyaERuiy91coHRTIHsG28pEiBxMUo4M4c2yo,6743
45
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/oauth.py,sha256=ok6b4BNXAD_p5hJ12hIjIFFc90q_4x5ouXqXLdIT6Ak,6926
46
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/sessions.py,sha256=RaTjCVCwIdZYAByYOadb79SLAmQlJTMz46S8jLkH1OE,4869
47
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/users.py,sha256=hu1OBOq6DBPgpmpkO9ervN_PcSoh1bVBJ8dcrda-lsk,8468
48
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/webhooks.py,sha256=0pC2piprVjv5pxcLeaavpINbsstCFOcdtsoHP2hLl2c,13237
49
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/ws.py,sha256=aYPzemixnwwH0gOazhnk1tcNNQyz8WW11kTv8vatF90,1426
50
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/__init__.py,sha256=gA4EUVDQQoTzeaLzFHZEA6Ps0eO7eo8NYjhNUDkzwzs,281
51
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/clients/redis.py,sha256=SiOE_YSSlIMsvP7BM17ZG3z35dunUwWHrMpbIc3UeOY,2636
52
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/__init__.py,sha256=qTHo8rqGxoWGVyi5t1Z99zP1invUw_9osgQ7nLGEb6A,3032
53
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/cleanup.py,sha256=ATNo0N_ys__81j5hXGzE5kjBfd9AXCdx7JQPIKebzIg,2447
54
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/example.py,sha256=sx49u9oUIqvTfkurkIrFsZ4HFP1946kclkNVp6-zW28,733
55
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/commands/seed.py,sha256=OMgE9bAgXsPI1OeHInc58sjO7FgTx_bUmpyd2WK7gXI,9342
56
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/__init__.py,sha256=0KTMN04rekcigOT6xO5DRXZ_Hj5vVBPvNBVYIQ6FGeg,106
57
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/cache.py,sha256=VYZfvIdLdtb1Y8h09IoxqPkDyG8pZtY96hR15Hff8YM,626
58
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py,sha256=1TZ0EyDzT7uuTjoT058I3Dm4tZtAk5e0i5nUC6LS-v8,7928
59
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/csrf.py,sha256=NMB7xWuj2tS69YJKFsILcU3J06gemGi6oFIwaUHIDCY,4914
60
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/exceptions.py,sha256=jjsFTjpqRxlp4XU2NR4lK_hmteJLZcO3DKJIZZ9T2Pk,2842
61
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/logfire_setup.py,sha256=4eS_bqhtqdgUrYPOelAWF8O_Q7yabP5zZHMfkiv07NA,2150
62
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/middleware.py,sha256=FfaZVeTY1GQUr3tRR_sf7zgHJ1PBX-zQJLkGyRQgMp0,3344
63
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/oauth.py,sha256=aAv64WrGyX7WR6XXce2SJ2l02uxgtLemd11Ilqx4dkE,597
64
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/rate_limit.py,sha256=emmc2orBEIT6yfrZvy1jxdr52_eVawYAQJx9MiFsQKk,1689
65
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/sanitize.py,sha256=wQn3h1pFL3aqemr6W2jWMqGPJGVnb8ipZwLOwHdr6aI,7372
66
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/security.py,sha256=AqT0q6y1PmhyhZeV97Ujtc2PQx8EdUKMeAa2VC2sCQY,2769
67
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/__init__.py,sha256=zBa6f3gUffZ1vMyxnqmWVPtW7YI05rbzmgibbUwmN4s,151
68
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/base.py,sha256=luNUjdB1nPU-6cWdUzdpuUdOG0chponk3O7MpXIEPZQ,1190
69
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/session.py,sha256=tnVBBF39g4NDQDtblA9cfpfeXxGe5Egv3mcKeT_5XVM,2634
70
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py,sha256=PubozE1RaMhf4U0aGNAiLkNHpOAH1hNsrO5IRuro8cc,1134
71
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/conversation.py,sha256=6OY79EeIBvy9x6noc0fwHK26rkIoF7yv5y2P6cw8umk,10761
72
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/item.py,sha256=LTWMetmbFIqlNnCJDsLQE8usct-cnvsj-SsXRh559QA,2889
73
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/session.py,sha256=dsazLLu5RFguzyg8e60fua2HnLYWcBK6te8oc3wkNA4,4423
74
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/user.py,sha256=8j_-NUB5lyDLSqYvxSdeJtxZmDefWJROsmxj2duk_Fk,6651
75
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/webhook.py,sha256=gw-rrqNIsGeBzNUxLUVevF5E-ZtAKXfBh1TvWXFckeE,7893
76
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/__init__.py,sha256=aUxx4qSMxaxP9SygICOQvvcQgI75-zqP1cdGAGCmkdo,262
77
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/pipelines/base.py,sha256=_CssyDyeqdJiBPN0tsx7E4q9Z1db5BRUweq6IAJbc6g,1944
78
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py,sha256=rNHPw6j2o1ppubBsms0r3F_0AbdHjDsUoaE0LsdATpM,1754
79
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/base.py,sha256=4rIFieAle9LO2fDB_s7BOw9bNSYA_NPwHv33hKBbD8I,4190
80
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/conversation.py,sha256=toLTcmabl5AT6o2vBM_2NwAY9_J_2EfK5AGzX0Evb2I,20816
81
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/item.py,sha256=USac17QKifFRqs65s_QEBgSZWgD8XlurnkGgVIyF3wU,4853
82
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/session.py,sha256=hSg3qBBSulcuYgQpAHByegDMR16WY-AqQvSf3DjJemY,8829
83
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py,sha256=JdS0sXJg08bwHLk5dJjjYVhRWE-1jW89GAVAqCE25AI,7652
84
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/webhook.py,sha256=1KLbmFj9fhEoNSWXbC2k940ssof00W99Av4sg0qXw-Y,9238
85
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py,sha256=GC_buyJRRpDKZLwFcX4EK4PMdYKdsZVjQJ77xWJD4C8,1956
86
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/base.py,sha256=iaYuUo0Jxo3jBOsFZtewPHL91t8Na6LcH4sd93P7uG8,1382
87
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/conversation.py,sha256=nZCjNWeIsWQL9Zqy2P7k7_Y9gvk7dYfRbUYeGLE5XK8,5464
88
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/item.py,sha256=pbGplhcx8mIZkE99oSM0NdYsmxwYBBfiNqNMTkPnk1Y,1234
89
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/session.py,sha256=sVwXvv7nhh4qnSF-SGIfPcESPg8Ghd_0LNhd4KtPmqo,897
90
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/token.py,sha256=FbjkjBbzWXXAeGT_55Jv5574Z9VcQbuyDj_CgUosNyo,606
91
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/user.py,sha256=yHA2GcOqER9XD1TdyEo_8VDEqYudb9rMk7pftYEdsxI,1581
92
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/webhook.py,sha256=OG1Cauhfj1h-RVqCO97vABO253uzHZ0htgNO1f1dFqs,1969
93
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/__init__.py,sha256=EOjL4YcFmpgYh-7rDv4VAD5zcA8t4ff-eAAabPNEK70,1378
94
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/conversation.py,sha256=dwJT037AyMgBXW-2s8qugK1w7W0ab1locSgGG5OJXYE,24756
95
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/item.py,sha256=OnGnoPCOJE8YGSOM8soH_HN-J1z35OFA2XXuT8U9Urw,7146
96
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/session.py,sha256=BQbWMPuAnOL4_6YvXGmEgmmRg2HqtgM35Ue5bjGIAvo,11333
97
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/user.py,sha256=xsPpoGef3t-6dA1CQW_QRWP4rt_NI3ZYnbamv1BZ1bs,13809
98
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/webhook.py,sha256=xCygcLy4UpiCsybqUkQ8Ib3BJfsSceIZ8OfYSlxpjLs,17062
99
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/__init__.py,sha256=P5Ac2zozpWW1MwW3AoRstB-GEyOtPF011t44l74pF6s,145
100
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/celery_app.py,sha256=64eaF-rfTMsf60AsnvvJ1var8roNNG10DGCiIMvAXuA,1668
101
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/taskiq_app.py,sha256=XfCdeoG14FgABKnsH7b0a38IaQzc45z166WLKS4otd0,851
102
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/__init__.py,sha256=cWtcaSaaQIKjpbt8fHgL6w_Sh2eRRkssu76KiCdxMYE,692
103
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/examples.py,sha256=T-VHMulRamX0bbq0UDw4EKAGyNRHlM7sLorSfkiiojY,2433
104
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/schedules.py,sha256=oa6mpit4TXg_R4jTkncYuKakHMgOJuSopyMOnKWLdHo,887
105
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/worker/tasks/taskiq_examples.py,sha256=7gVfUToHbphzCk8TzunDmDGyaW8dFT3F7DafoYdCr28,1929
106
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/__init__.py,sha256=Min6pv55Zp3DSWyXUNKNNE0KqrPNxCwMLDxfWrYtxK0,26
107
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/cli/commands.py,sha256=GOgDrpC6HYL7UNgYlZoRjoNj1mmRcytYP6KZqC6DYYM,13101
108
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/scripts/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/__init__.py,sha256=xqsJPT1QR2TH_5GYK8tiHp-Lb29chxGsr147MWoLAZw,21
110
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/conftest.py,sha256=dHJhMgAoU6JBp-_-3JsOkqTgvCH9RD7flJy_z1-8JiI,4099
111
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_agents.py,sha256=fYds9POtpvjJbahHLHIT3MqQBoxfCzhp7I2ERefTKLk,4031
112
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_clients.py,sha256=qKU2z4YVQMWdnNE9aH5lnACsdzQ1G4fcE9_sK8x7K2U,6282
113
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_commands.py,sha256=45TvE15OGGd3p2HS4bpnUnVToW24L5rjMOQXaJpkWyk,5014
114
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_core.py,sha256=eU7FHHGCpW4eH8zK3fZvjN7EmM_Ys7C-DCBkJ1b6xRI,4107
115
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_pipelines.py,sha256=gyoD18adMZKHv-q8bKiSvJ2yYdUmKsTOaQ_hpQmorGY,4036
116
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_repositories.py,sha256=uaikldLNo95ukhzvlFmLHxHByioxwSdreyQ9grx1H3A,5748
117
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_security.py,sha256=6YJUtT9HqIkhcyAEmQSIiYNunNVC_hmsrfjscmdON-k,3752
118
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_services.py,sha256=tAm_8_CNbNdWgVJwTqDg6r-CXNI8DjV-o4DKtUQFZg4,13396
119
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/test_worker.py,sha256=rg-qqcZK9iroX6bnseFrb9WFNeHX-SwPUBPR2YbfhCg,2824
120
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/__init__.py,sha256=WV9U5TSWbUYHVA2F3CD7gfod4RdX8EM1s4ewEnwszr0,25
121
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_auth.py,sha256=AfpNTqSNVi8_sBy4-sAMmn-5U9ePhq5pcDkUzB3wpKQ,7207
122
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_exceptions.py,sha256=sVM3vBqESNbQLnAWRlK8qTYBX1g5xvyc_mLgsO1IisI,4621
123
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_health.py,sha256=XwkFvoezYip-YT977rlLB9o46uGV77MSijt_bNlowT0,3678
124
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_items.py,sha256=lFMdUaayDDEw7msuVj3po6pYa8TgvE9XjTKc-GiaWk4,9202
125
+ fastapi_gen/template/{{cookiecutter.project_slug}}/backend/tests/api/test_users.py,sha256=JLcPKnk14aPSyyWpjEHfFJcBBDEdHMLM41Tuua7nbnM,7343
126
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.env.example,sha256=zdNGfQl6TPssMN8NV0wjpuqB90ZUHvKo2bDHLsGsvy0,516
127
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.gitignore,sha256=fZEN8HisQjcSmxEB3IDWoKA5dTYDzEAXLtqYKvdsprs,439
128
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierignore,sha256=wYnkkZcvXw2mtuFVzYAjH-eFldFkK5Xn26fsZZ19BK0,161
129
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/.prettierrc,sha256=cjszu9uAT0HddFAatvqg7KjdgnC99AGuOhZL9SE8eL8,227
130
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/Dockerfile,sha256=JiXpTpjX4XrN-TB67YwumMAf61KO99tmF-oxrPqM_6E,891
131
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/README.md,sha256=x0F_Ciuno8O59YJRBSEKC0bucLUnbwPKrJOey2YlnaE,17256
132
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/instrumentation.ts,sha256=KKUhYC1lApvs-Vtw9kkzqYiZBaW5axDvHhxeHznljM4,344
133
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/next.config.ts,sha256=KZfqQ0h9H76xnhvkO8Ee8g7Faw_Y9dkVDYZImCIEtSc,1745
134
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json,sha256=d6sN_wskf2tUI5TnSk0JHJnKtxOKPHg81qXBecyZJP8,2051
135
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/playwright.config.ts,sha256=KVU5cy9ASA9K0ylTbJcDTgS3q_VU5MsqH1-_rH3WiFI,2534
136
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/postcss.config.mjs,sha256=36x6wthtMmoOWtsCTnlDwYE5PtF6X8uPAxWyTH2m3d4,94
137
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/tsconfig.json,sha256=5e9WIUv-5NawO5gSJkGWK3ZBBTbHGqVQvt0wJJ8vEwo,622
138
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.config.ts,sha256=xCRc092WUV3SmCkIqs4-YJWqvTQk0hWVMnucyLApXKs,803
139
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/vitest.setup.ts,sha256=VkPwN2DE2TjgosXO4vgBFTusROfdmuoi9QqXtDy7pW0,1315
140
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.setup.ts,sha256=OyeeeylUxBClyZk-n8X6rd5_43yt3Tf0m8g9Og75rYk,1496
141
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/auth.spec.ts,sha256=WgBZMrrJRDurowJ0GFAFmV1Ro1zLX5xZ2nNDGzrTuBs,4697
142
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts,sha256=xFAc7tktmHt_9js7UbjbkiBMcBFEZ4EXwmG7ffAVn4Q,6540
143
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/home.spec.ts,sha256=dTFTdCqIMXlmnQNvc9F4NhxOdloYThoWbRlJnFeWIzg,2156
144
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json,sha256=j_oMFCy00MsUe8BwI9DeHeVJpznhuGg7jD56SJ8hgvI,2484
145
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json,sha256=9Lwn1ywySlhIaK8JZWWl0gRp24Wg-EI5RQFtQ1z72xg,2544
146
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/i18n.ts,sha256=f-uJ4-bA5Tj-V3IqU_p4t0k_-Zol949Qb8cY2DcC2XY,896
147
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/middleware.ts,sha256=j5CHtDomD0BBTXaUN8nQHDAmt6I8NPmoyNZww1BJCpk,939
148
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css,sha256=-lnny55Z-O9pWHvHwvU8MfAnCT1I1va8Zj0FmvfL0Tc,3289
149
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx,sha256=rET9JPbyPUlnNzXGuSZ1n3MEmT9uM2mS3IXcCdl_xPQ,604
150
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/page.tsx,sha256=-Nr-9q6g5AHxrQALWl3purznBQVjVV3-c_1JCJnx0uk,2433
151
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/providers.tsx,sha256=FkSHLhFkZQA262ZzWgI80WwxVM8CjaI2YEsyZMrChvU,665
152
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/layout.tsx,sha256=3daccxNVbMRiM6L04Q2SSyjNR9tLzdiEGIpFgJOyq3M,221
153
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/login/page.tsx,sha256=iw5H4gmIm58t4pK9oVrWNBbDAIYGTvG9UeBBrIXDVGw,112
154
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(auth)/register/page.tsx,sha256=Lq1l_nvqbqmVH_9Rvo2tNBPK8nVzVuHYjInWEopAxmk,121
155
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/layout.tsx,sha256=CyicmGC-78LkIIoL_1aBn_sGomB2cyhnhl0EexTTjcA,400
156
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/chat/page.tsx,sha256=WEdZwNTyZbOtGMRvQmZTpfO7GCxAKs-WGynU4ugZ47c,510
157
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/dashboard/page.tsx,sha256=XHGb_76Dpxq2GVWzT9TwZtIjEaadaeZ6Ae4NPR_VRpw,3114
158
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/(dashboard)/profile/page.tsx,sha256=vU5K00VnXNd_Szaz3UDpQrSOuheF0YBIqBTEYGJCWeg,5249
159
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/login/route.ts,sha256=N95bhzBIXkSAxcUIHJb6pzUcwgImOeKNu6LNt3at4gQ,1753
160
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/logout/route.ts,sha256=p2vx0cL3w3_xcc3qsKaUQPlRuGQmTKue3pp3_zPT7js,549
161
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/me/route.ts,sha256=bLO4e2J9c60rgkwCeFuvhtasUW_geRDiaw4k86qL7vA,1091
162
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/oauth-callback/route.ts,sha256=N8oBybbaj3oKsVKbFANm3fWebI9NpFsAlGKKdkCy4Fo,1306
163
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/refresh/route.ts,sha256=xxQTMdR-o-S5jV_rxKyWIcUfpNpX6Nu0QviRbgq2OOY,1524
164
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/auth/register/route.ts,sha256=3v-KAgPDhQ6nhDYT1dvWR8gkodBRIPK6MgYVq38oiKA,839
165
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/route.ts,sha256=vX55g9Ln68KIbYTI9qbauZdrbfruTnsKaISMiGRErb0,2176
166
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/route.ts,sha256=fitSwuvxPXTkTN4-jaa2YMtZKXHmm-BKkqpiaGJOeCo,3010
167
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/conversations/[id]/messages/route.ts,sha256=t2mhjNIqjxpYf4WuwncrSuJShbXIFV6mXG3kAQmDRfY,1225
168
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/api/health/route.ts,sha256=W2KbKll48cc044pOVMBHd_R-t9VFy0ntKj6-8vOcwLE,606
169
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/auth/callback/page.tsx,sha256=NfzWsyFmEMRgimRtDO5mJpgfdlAynUVyFBSCfPM8UVU,2908
170
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/language-switcher.tsx,sha256=mZmZ34MriWkLCcYcDCy3kRpT_li_AocWeK7sFVYrjek,2837
171
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts,sha256=7h7J1ATCCYrVwGYr1j6k-TuVBxWKoLgmRwQS21tJF5Y,90
172
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx,sha256=_MX_XBLB22cvHWmvn_WUooATFqaFM-G4D8HKSVnJBsg,3760
173
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx,sha256=EofAzSHxNlM8LrRAKYmQ5-jVJnsnjy0ZERPXZ_22uxY,4911
174
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx,sha256=otOsLEPuzoWrzLAOyMu_vw4HDrvEkj1ADCOAjtJlQso,4292
175
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx,sha256=2Kzmzo76B1DSYE6xtuSmtD-KDapeWTUGs3iWseDfIbE,2071
176
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx,sha256=_WyNpKGta0gEKKKrE5GAa4Zrqz7GmvyLDouZFm1D5pA,7596
177
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts,sha256=1OjuuuQExeqV2z6FJGHg2ik0-uHT6WrG4ikvRcXq9JU,393
178
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-item.tsx,sha256=MdWbMiyHpOmMsC08iAwvKuK8rA7rd32lJ1KSl-B2s7o,1802
179
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx,sha256=sF_lmB_5xo5VyGAjKJo96z4jznrJ4JYqoENO_2tVk-E,392
180
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx,sha256=ooHKdr-sCvJf5fyFThRcrw1aMJbY_lLyim-eJ5iSiRc,2106
181
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/google-icon.tsx,sha256=1N1bjOHSbRT0yinxoCZUTTc2aOTsjzNFRdSUNrll0J0,1073
182
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/icons/index.ts,sha256=HHElTMcT04ZHmI9mX5_Rf0re7wRaI_HHTISocPlhFYM,100
183
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx,sha256=1QPtr7pcv62n8Ukj-ijvKNo4f8OFd6OCAjfEruWo2MM,1562
184
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/index.ts,sha256=RGwTsrHR3iOA1uiHP71L_6DvaT3C-tLdeEjYLVNywm4,72
185
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx,sha256=1PwzlNsUoHa8-zE-Q1sbA1z6i0W1otd5KfuU3qgKliM,1605
186
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/index.ts,sha256=RkXg8_Iv6Mw2KcINLSaji3QKSrNnqKCP17my25-518M,217
187
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-provider.tsx,sha256=1QeGN1B5g6nJ-XDlrDIh9zDCjAZfxVOjRC0n-CLsw9g,1533
188
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/theme/theme-toggle.tsx,sha256=GJ6cp4HXxcVRmtTOfo0190b5sw6iliCpRir3z-17gXo,2219
189
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/badge.tsx,sha256=H5Guparj6yLhD8wGDb1LfvZby99-VAm-2q0QFRjhejc,1145
190
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.test.tsx,sha256=_5exdfb2OdRc21epwBbKVegcHR3iOKerXWZAGNZdEn8,2346
191
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/button.tsx,sha256=zHYBo_a1TTr5cwNDk7uvmRRpeCNQDEg9qFa0795V4A4,1808
192
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/card.tsx,sha256=RZjMgqg6gi0yNH7daOWdE6A3F--WPD5_pKd7U5C4PVQ,1855
193
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts,sha256=vqN4bPmX0oocrL5J0BM0oLQ06DKoMdmNBlpkc-balkI,274
194
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/input.tsx,sha256=zrewyulhYF_tlz7A8utJ59YMeDaBdIp8QkEfJG6DS8w,773
195
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/label.tsx,sha256=50KTBB-WrpTLTEV8aNN9y5KRokJZbF7VpFc_7gLCTxA,472
196
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts,sha256=Xz5JucqVKHjMaVvhUe4-4SqkYRLu1ae8xfcKyPP9kyw,278
197
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-auth.ts,sha256=e3KWyCC1sS6AHiPWX1XkW93-v1xJ1sbiqqpvf0RW_eM,2334
198
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts,sha256=WTbdDMChDYI5UvYPZrhBxq4JBHgwLLBb-uBZPvyncPo,5944
199
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-conversations.ts,sha256=wzBFoHGftTrWR4rBhtd1ODY2C1gsWjvmGfEU9IB69kw,4672
200
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-websocket.ts,sha256=wVOXjPF1uBULis4ec9O3gZkU_68rKMIjw3wtCJG5Fo4,2648
201
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/api-client.ts,sha256=X2x9mbmHfjWbsQEA1ILilHky5ak8QCj-owI65ZqrdEo,2275
202
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/constants.ts,sha256=fjMHkXcCsBp0Q4kDfRLbNEQBRd2kNmDhZaHuWmid_i0,847
203
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/server-api.ts,sha256=4e2SNaXoEEe1F4Z1SWLXvjHAzYOcK4QiG3QjyIYpr-g,1851
204
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.test.ts,sha256=S4hLcI8u5-sPixqyPyedi6mZRSjJlLhRTPkVY-8DV1g,1299
205
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/lib/utils.ts,sha256=bZ_gCiWlxvrEzbmHOFX8zhuRigCq1da2NZFpv4jyU-U,1090
206
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.test.ts,sha256=CUS0IQH_G7yBA5d8572_M2I10-xM-0nUTfXmweUsxIE,1975
207
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/auth-store.ts,sha256=u-c58yoAJosjzolQa1_zshMsKeV9Z-TFPK8Pit5eY3c,982
208
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/chat-store.ts,sha256=I3FJM8lYsTOoqx9pNQPDfRUqDmda9CDJeb1Bt3zj0AU,1647
209
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/conversation-store.ts,sha256=DC6oSZ-cRrEXsOiLZWmG3kFmSw92hnDytTtxp589SnI,2301
210
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/index.ts,sha256=mp2KLNZF0kUYT2TkD2vMcUWrLX5HmUYlEUPeYEAu0a8,296
211
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/stores/theme-store.ts,sha256=-xY0kYXZMks-Qh1qrcMDwcdh_svF1ww498aR3u7MKOU,985
212
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/api.ts,sha256=h_WXzUWJ67lDJ2hKi5It2hlTWhGnm_YMa0nTYJn3TDM,396
213
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/auth.ts,sha256=anNUBMNJ5Y3zlX6e174Acre7P2lo4Vfa4w0KSJW-sRo,839
214
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts,sha256=s5X6zeoddFkAToYgSB6MWynNhGkMu2hDsENzAd2S_xE,1416
215
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/conversation.ts,sha256=0kBX-7qYowZOrBGMDjH_7dA8FEujtXqlfbRBpT4FBng,1150
216
+ fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/index.ts,sha256=W0lBPMjlZ0wt-eqGBqQvt648q90n2i9v0Bh25pdm8S4,234
217
+ fastapi_fullstack-0.1.2.dist-info/METADATA,sha256=Ty-fW4ycIs10FxWJUzMmBUyp6-WPXWr9LsRC0IMopfE,16183
218
+ fastapi_fullstack-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
219
+ fastapi_fullstack-0.1.2.dist-info/entry_points.txt,sha256=s9JXrISZp8LMYJGeVofOAd1wPTzpq-jwjSgSf4hWzjs,59
220
+ fastapi_fullstack-0.1.2.dist-info/licenses/LICENSE,sha256=bL4JuK_rcA8y__Gg7PEuTs3g2Qf6VvSz2w2Jajd6nVU,1063
221
+ fastapi_fullstack-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fastapi-fullstack = fastapi_gen.cli:main
@@ -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.
@@ -0,0 +1,3 @@
1
+ """FastAPI Project Generator with Logfire observability."""
2
+
3
+ __version__ = "0.1.0"
fastapi_gen/cli.py ADDED
@@ -0,0 +1,256 @@
1
+ """CLI interface for FastAPI project generator."""
2
+
3
+ from pathlib import Path
4
+
5
+ import click
6
+ from rich.console import Console
7
+
8
+ from . import __version__
9
+ from .config import (
10
+ AuthType,
11
+ CIType,
12
+ DatabaseType,
13
+ FrontendType,
14
+ ProjectConfig,
15
+ )
16
+ from .generator import generate_project, post_generation_tasks
17
+ from .prompts import confirm_generation, run_interactive_prompts, show_summary
18
+
19
+ console = Console()
20
+
21
+
22
+ @click.group()
23
+ @click.version_option(version=__version__, prog_name="fastapi-gen")
24
+ def cli() -> None:
25
+ """FastAPI Project Generator with Logfire observability."""
26
+
27
+
28
+ @cli.command()
29
+ @click.option(
30
+ "-o",
31
+ "--output",
32
+ type=click.Path(exists=True, file_okay=False, dir_okay=True, path_type=Path),
33
+ default=None,
34
+ help="Output directory for the generated project",
35
+ )
36
+ @click.option(
37
+ "--no-input",
38
+ is_flag=True,
39
+ default=False,
40
+ help="Use default values without prompts",
41
+ )
42
+ @click.option("--name", type=str, help="Project name (for --no-input mode)")
43
+ def new(output: Path | None, no_input: bool, name: str | None) -> None:
44
+ """Create a new FastAPI project interactively."""
45
+ try:
46
+ if no_input:
47
+ if not name:
48
+ console.print("[red]Error:[/] --name is required when using --no-input")
49
+ raise SystemExit(1)
50
+
51
+ config = ProjectConfig(project_name=name)
52
+ else:
53
+ config = run_interactive_prompts()
54
+ show_summary(config)
55
+
56
+ if not confirm_generation():
57
+ console.print("[yellow]Project generation cancelled.[/]")
58
+ return
59
+
60
+ project_path = generate_project(config, output)
61
+ post_generation_tasks(project_path, config)
62
+
63
+ except KeyboardInterrupt:
64
+ console.print("\n[yellow]Cancelled.[/]")
65
+ raise SystemExit(0) from None
66
+ except Exception as e:
67
+ console.print(f"[red]Error:[/] {e}")
68
+ raise SystemExit(1) from None
69
+
70
+
71
+ @cli.command()
72
+ @click.argument("name", type=str)
73
+ @click.option(
74
+ "-o",
75
+ "--output",
76
+ type=click.Path(exists=True, file_okay=False, dir_okay=True, path_type=Path),
77
+ default=None,
78
+ help="Output directory",
79
+ )
80
+ @click.option(
81
+ "--database",
82
+ type=click.Choice(["postgresql", "mongodb", "sqlite", "none"]),
83
+ default="postgresql",
84
+ help="Database type",
85
+ )
86
+ @click.option(
87
+ "--auth",
88
+ type=click.Choice(["jwt", "api_key", "both", "none"]),
89
+ default="jwt",
90
+ help="Authentication method",
91
+ )
92
+ @click.option("--no-logfire", is_flag=True, help="Disable Logfire integration")
93
+ @click.option("--no-docker", is_flag=True, help="Disable Docker files")
94
+ @click.option("--no-env", is_flag=True, help="Skip .env file generation")
95
+ @click.option("--minimal", is_flag=True, help="Create minimal project (no extras)")
96
+ @click.option("--no-example-crud", is_flag=True, help="Skip example CRUD endpoint")
97
+ @click.option(
98
+ "--frontend",
99
+ type=click.Choice(["none", "nextjs"]),
100
+ default="none",
101
+ help="Frontend framework",
102
+ )
103
+ @click.option(
104
+ "--backend-port",
105
+ type=int,
106
+ default=8000,
107
+ help="Backend server port (default: 8000)",
108
+ )
109
+ @click.option(
110
+ "--frontend-port",
111
+ type=int,
112
+ default=3000,
113
+ help="Frontend server port (default: 3000)",
114
+ )
115
+ @click.option(
116
+ "--db-pool-size",
117
+ type=int,
118
+ default=5,
119
+ help="Database connection pool size (default: 5)",
120
+ )
121
+ @click.option(
122
+ "--db-max-overflow",
123
+ type=int,
124
+ default=10,
125
+ help="Database max overflow connections (default: 10)",
126
+ )
127
+ def create(
128
+ name: str,
129
+ output: Path | None,
130
+ database: str,
131
+ auth: str,
132
+ no_logfire: bool,
133
+ no_docker: bool,
134
+ no_env: bool,
135
+ minimal: bool,
136
+ no_example_crud: bool,
137
+ frontend: str,
138
+ backend_port: int,
139
+ frontend_port: int,
140
+ db_pool_size: int,
141
+ db_max_overflow: int,
142
+ ) -> None:
143
+ """Create a new FastAPI project with specified options.
144
+
145
+ NAME is the project name (e.g., my_project)
146
+ """
147
+ try:
148
+ if minimal:
149
+ config = ProjectConfig(
150
+ project_name=name,
151
+ database=DatabaseType.NONE,
152
+ auth=AuthType.NONE,
153
+ enable_logfire=False,
154
+ enable_redis=False,
155
+ enable_caching=False,
156
+ enable_rate_limiting=False,
157
+ enable_pagination=False,
158
+ enable_admin_panel=False,
159
+ enable_websockets=False,
160
+ enable_docker=False,
161
+ enable_kubernetes=False,
162
+ ci_type=CIType.NONE,
163
+ generate_env=not no_env,
164
+ include_example_crud=False,
165
+ frontend=FrontendType(frontend),
166
+ backend_port=backend_port,
167
+ frontend_port=frontend_port,
168
+ )
169
+ else:
170
+ config = ProjectConfig(
171
+ project_name=name,
172
+ database=DatabaseType(database),
173
+ auth=AuthType(auth),
174
+ enable_logfire=not no_logfire,
175
+ enable_docker=not no_docker,
176
+ generate_env=not no_env,
177
+ include_example_crud=not no_example_crud,
178
+ frontend=FrontendType(frontend),
179
+ backend_port=backend_port,
180
+ frontend_port=frontend_port,
181
+ db_pool_size=db_pool_size,
182
+ db_max_overflow=db_max_overflow,
183
+ )
184
+
185
+ console.print(f"[cyan]Creating project:[/] {name}")
186
+ console.print(f"[dim]Database: {config.database.value}[/]")
187
+ console.print(f"[dim]Auth: {config.auth.value}[/]")
188
+ if config.frontend != FrontendType.NONE:
189
+ console.print(f"[dim]Frontend: {config.frontend.value}[/]")
190
+ console.print()
191
+
192
+ project_path = generate_project(config, output)
193
+ post_generation_tasks(project_path, config)
194
+
195
+ except ValueError as e:
196
+ console.print(f"[red]Invalid configuration:[/] {e}")
197
+ raise SystemExit(1) from None
198
+ except Exception as e:
199
+ console.print(f"[red]Error:[/] {e}")
200
+ raise SystemExit(1) from None
201
+
202
+
203
+ @cli.command()
204
+ def templates() -> None:
205
+ """List available template options."""
206
+ console.print("[bold cyan]Available Options[/]")
207
+ console.print()
208
+
209
+ console.print("[bold]Databases:[/]")
210
+ console.print(" - postgresql PostgreSQL with asyncpg (async)")
211
+ console.print(" - mongodb MongoDB with Motor (async)")
212
+ console.print(" - sqlite SQLite with SQLAlchemy (sync)")
213
+ console.print(" - none No database")
214
+ console.print()
215
+
216
+ console.print("[bold]Authentication:[/]")
217
+ console.print(" - jwt JWT + User Management")
218
+ console.print(" - api_key API Key (header-based)")
219
+ console.print(" - both JWT with API Key fallback")
220
+ console.print(" - none No authentication")
221
+ console.print()
222
+
223
+ console.print("[bold]Background Tasks:[/]")
224
+ console.print(" - none FastAPI BackgroundTasks only")
225
+ console.print(" - celery Celery (classic)")
226
+ console.print(" - taskiq Taskiq (async-native)")
227
+ console.print(" - arq ARQ (lightweight)")
228
+ console.print()
229
+
230
+ console.print("[bold]Frontend:[/]")
231
+ console.print(" - none API only (no frontend)")
232
+ console.print(" - nextjs Next.js 15 (App Router, TypeScript, Bun)")
233
+ console.print()
234
+
235
+ console.print("[bold]Optional Features:[/]")
236
+ console.print(" - Logfire integration")
237
+ console.print(" - Redis (caching/sessions)")
238
+ console.print(" - Rate limiting (slowapi)")
239
+ console.print(" - Pagination (fastapi-pagination)")
240
+ console.print(" - Admin Panel (SQLAdmin)")
241
+ console.print(" - WebSockets")
242
+ console.print(" - File Storage (S3/MinIO)")
243
+ console.print(" - AI Agent (PydanticAI)")
244
+ console.print(" - Example CRUD (Item model)")
245
+ console.print(" - Docker + docker-compose")
246
+ console.print(" - GitHub Actions / GitLab CI")
247
+ console.print(" - Kubernetes manifests")
248
+
249
+
250
+ def main() -> None:
251
+ """Main entry point."""
252
+ cli()
253
+
254
+
255
+ if __name__ == "__main__": # pragma: no cover
256
+ main()