insforge 1.2.10 → 1.3.0

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 (335) hide show
  1. package/.claude-plugin/marketplace.json +20 -20
  2. package/.dockerignore +60 -60
  3. package/.env.example +83 -77
  4. package/.github/ISSUE_TEMPLATE/bug_report.yml +36 -36
  5. package/.github/ISSUE_TEMPLATE/config.yml +11 -11
  6. package/.github/ISSUE_TEMPLATE/feature_request.yml +26 -26
  7. package/.github/PULL_REQUEST_TEMPLATE.md +7 -7
  8. package/.github/copilot-instructions.md +146 -146
  9. package/.github/workflows/build-image.yml +65 -65
  10. package/.github/workflows/ci-premerge-check.yml +23 -23
  11. package/.github/workflows/e2e.yml +63 -63
  12. package/.github/workflows/lint-and-format.yml +32 -32
  13. package/.prettierignore +64 -64
  14. package/CHANGELOG.md +44 -44
  15. package/CLAUDE_PLUGIN.md +104 -104
  16. package/CODE_OF_CONDUCT.md +128 -128
  17. package/CONTRIBUTING.md +125 -125
  18. package/Dockerfile +30 -30
  19. package/GITHUB_OAUTH_SETUP.md +49 -49
  20. package/GOOGLE_OAUTH_SETUP.md +148 -148
  21. package/LICENSE +201 -201
  22. package/README.md +182 -182
  23. package/assets/Dark.svg +23 -23
  24. package/auth/package.json +28 -28
  25. package/auth/src/lib/broadcastService.ts +117 -115
  26. package/auth/src/pages/SignInPage.tsx +60 -57
  27. package/auth/src/pages/SignUpPage.tsx +60 -57
  28. package/auth/tsconfig.json +32 -32
  29. package/auth/tsconfig.node.json +11 -11
  30. package/backend/package.json +78 -75
  31. package/backend/src/api/routes/ai/index.routes.ts +3 -3
  32. package/backend/src/api/routes/auth/index.routes.ts +667 -570
  33. package/backend/src/api/routes/auth/oauth.routes.ts +473 -448
  34. package/backend/src/api/routes/database/advance.routes.ts +37 -16
  35. package/backend/src/api/routes/database/index.routes.ts +78 -1
  36. package/backend/src/api/routes/database/records.routes.ts +10 -10
  37. package/backend/src/api/routes/database/tables.routes.ts +0 -14
  38. package/backend/src/api/routes/docs/index.routes.ts +75 -76
  39. package/backend/src/api/routes/email/index.routes.ts +35 -0
  40. package/backend/src/api/routes/functions/index.routes.ts +18 -12
  41. package/backend/src/api/routes/metadata/index.routes.ts +12 -0
  42. package/backend/src/api/routes/realtime/channels.routes.ts +81 -0
  43. package/backend/src/api/routes/realtime/index.routes.ts +12 -0
  44. package/backend/src/api/routes/realtime/messages.routes.ts +48 -0
  45. package/backend/src/api/routes/realtime/permissions.routes.ts +19 -0
  46. package/backend/src/api/routes/storage/index.routes.ts +18 -12
  47. package/backend/src/api/routes/usage/index.routes.ts +6 -4
  48. package/backend/src/infra/database/database.manager.ts +14 -1
  49. package/backend/src/infra/database/migrations/000_create-base-tables.sql +141 -141
  50. package/backend/src/infra/database/migrations/001_create-helper-functions.sql +40 -40
  51. package/backend/src/infra/database/migrations/002_rename-auth-tables.sql +29 -29
  52. package/backend/src/infra/database/migrations/003_create-users-table.sql +55 -55
  53. package/backend/src/infra/database/migrations/004_add-reload-postgrest-func.sql +23 -23
  54. package/backend/src/infra/database/migrations/005_enable-project-admin-modify-users.sql +29 -29
  55. package/backend/src/infra/database/migrations/006_modify-ai-usage-table.sql +24 -24
  56. package/backend/src/infra/database/migrations/007_drop-metadata-table.sql +1 -1
  57. package/backend/src/infra/database/migrations/008_add-system-tables.sql +76 -76
  58. package/backend/src/infra/database/migrations/009_add-function-secrets.sql +23 -23
  59. package/backend/src/infra/database/migrations/010_modify-ai-config-modalities.sql +93 -93
  60. package/backend/src/infra/database/migrations/011_refactor-secrets-table.sql +15 -15
  61. package/backend/src/infra/database/migrations/012_add-storage-uploaded-by.sql +7 -7
  62. package/backend/src/infra/database/migrations/013_create-auth-schema-functions.sql +44 -44
  63. package/backend/src/infra/database/migrations/014_add-updated-at-trigger-user-table.sql +7 -7
  64. package/backend/src/infra/database/migrations/015_create-auth-config-and-email-otp-tables.sql +59 -59
  65. package/backend/src/infra/database/migrations/016_update-auth-config-and-email-otp.sql +24 -24
  66. package/backend/src/infra/database/migrations/017_create-realtime-schema.sql +233 -0
  67. package/backend/src/infra/realtime/realtime.manager.ts +246 -0
  68. package/backend/src/infra/realtime/webhook-sender.ts +82 -0
  69. package/backend/src/infra/security/token.manager.ts +219 -125
  70. package/backend/src/infra/socket/socket.manager.ts +198 -64
  71. package/backend/src/providers/ai/openrouter.provider.ts +12 -9
  72. package/backend/src/providers/email/base.provider.ts +4 -7
  73. package/backend/src/providers/email/cloud.provider.ts +84 -0
  74. package/backend/src/providers/oauth/apple.provider.ts +266 -0
  75. package/backend/src/providers/oauth/index.ts +1 -0
  76. package/backend/src/server.ts +317 -284
  77. package/backend/src/services/ai/ai-model.service.ts +5 -5
  78. package/backend/src/services/ai/chat-completion.service.ts +4 -4
  79. package/backend/src/services/ai/image-generation.service.ts +3 -3
  80. package/backend/src/services/auth/auth.service.ts +14 -0
  81. package/backend/src/services/database/database-table.service.ts +0 -9
  82. package/backend/src/services/database/database.service.ts +127 -0
  83. package/backend/src/services/email/email.service.ts +5 -7
  84. package/backend/src/services/realtime/index.ts +3 -0
  85. package/backend/src/services/realtime/realtime-auth.service.ts +104 -0
  86. package/backend/src/services/realtime/realtime-channel.service.ts +237 -0
  87. package/backend/src/services/realtime/realtime-message.service.ts +260 -0
  88. package/backend/src/types/auth.ts +11 -0
  89. package/backend/src/types/realtime.ts +18 -0
  90. package/backend/src/types/socket.ts +7 -31
  91. package/backend/src/utils/cookies.ts +35 -0
  92. package/backend/src/utils/s3-config-loader.ts +64 -0
  93. package/backend/src/utils/seed.ts +301 -298
  94. package/backend/src/utils/sql-parser.ts +90 -0
  95. package/backend/tests/README.md +133 -133
  96. package/backend/tests/cleanup-all-test-data.sh +230 -230
  97. package/backend/tests/cloud/test-s3-multitenant.sh +131 -131
  98. package/backend/tests/local/comprehensive-curl-tests.sh +155 -155
  99. package/backend/tests/local/test-ai-config.sh +129 -129
  100. package/backend/tests/local/test-ai-usage.sh +80 -80
  101. package/backend/tests/local/test-auth-router.sh +143 -143
  102. package/backend/tests/local/test-database-router.sh +222 -222
  103. package/backend/tests/local/test-e2e.sh +240 -240
  104. package/backend/tests/local/test-fk-errors.sh +96 -96
  105. package/backend/tests/local/test-functions.sh +123 -123
  106. package/backend/tests/local/test-id-field.sh +200 -200
  107. package/backend/tests/local/test-logs.sh +132 -132
  108. package/backend/tests/local/test-public-bucket.sh +264 -264
  109. package/backend/tests/local/test-secrets.sh +249 -249
  110. package/backend/tests/local/test-serverless-functions.sh.disabled +325 -325
  111. package/backend/tests/local/test-traditional-rest.sh +208 -208
  112. package/backend/tests/manual/README.md +50 -50
  113. package/backend/tests/manual/create-large-table-simple.sql +10 -10
  114. package/backend/tests/manual/seed-large-table.sql +100 -100
  115. package/backend/tests/manual/setup-large-table-extras.sql +33 -33
  116. package/backend/tests/manual/test-bulk-upsert.sh +409 -409
  117. package/backend/tests/manual/test-database-advance.sh +296 -296
  118. package/backend/tests/manual/test-postgrest-stability.sh +191 -191
  119. package/backend/tests/manual/test-rawsql-export-import.sh +411 -411
  120. package/backend/tests/manual/test-rawsql-modes.sh +244 -244
  121. package/backend/tests/manual/test-universal-storage.sh +263 -263
  122. package/backend/tests/manual/test-users.sql +17 -17
  123. package/backend/tests/run-all-tests.sh +139 -139
  124. package/backend/tests/setup.ts +0 -0
  125. package/backend/tests/test-config.sh +338 -338
  126. package/backend/tests/unit/analyze-query.test.ts +697 -0
  127. package/backend/tsconfig.json +22 -22
  128. package/claude-plugin/.claude-plugin/plugin.json +24 -24
  129. package/claude-plugin/README.md +133 -133
  130. package/claude-plugin/skills/insforge-schema-patterns/SKILL.md +270 -270
  131. package/docker-compose.prod.yml +204 -200
  132. package/docker-compose.yml +232 -228
  133. package/docker-init/db/db-init.sql +97 -97
  134. package/docker-init/db/jwt.sql +5 -5
  135. package/docker-init/db/postgresql.conf +16 -16
  136. package/docker-init/logs/vector.yml +236 -236
  137. package/docs/README.md +44 -44
  138. package/docs/agent-docs/real-time.md +269 -0
  139. package/docs/changelog.mdx +119 -67
  140. package/docs/core-concepts/ai/architecture.mdx +372 -372
  141. package/docs/core-concepts/ai/sdk.mdx +213 -213
  142. package/docs/core-concepts/authentication/architecture.mdx +278 -278
  143. package/docs/core-concepts/authentication/sdk.mdx +414 -414
  144. package/docs/core-concepts/authentication/ui-components/customization.mdx +529 -529
  145. package/docs/core-concepts/authentication/ui-components/nextjs.mdx +221 -221
  146. package/docs/core-concepts/authentication/ui-components/react-router.mdx +184 -184
  147. package/docs/core-concepts/authentication/ui-components/react.mdx +129 -129
  148. package/docs/core-concepts/database/architecture.mdx +255 -255
  149. package/docs/core-concepts/database/sdk.mdx +382 -382
  150. package/docs/core-concepts/email/architecture.mdx +101 -0
  151. package/docs/core-concepts/email/sdk.mdx +53 -0
  152. package/docs/core-concepts/functions/architecture.mdx +105 -105
  153. package/docs/core-concepts/functions/sdk.mdx +184 -184
  154. package/docs/core-concepts/realtime/architecture.mdx +446 -0
  155. package/docs/core-concepts/realtime/sdk.mdx +409 -0
  156. package/docs/core-concepts/storage/architecture.mdx +243 -243
  157. package/docs/core-concepts/storage/sdk.mdx +253 -253
  158. package/docs/deployment/README.md +94 -94
  159. package/docs/deployment/deploy-to-aws-ec2.md +564 -564
  160. package/docs/deployment/deploy-to-azure-virtual-machines.md +312 -312
  161. package/docs/deployment/deploy-to-google-cloud-compute-engine.md +613 -613
  162. package/docs/deployment/deploy-to-render.md +441 -441
  163. package/docs/deprecated/insforge-auth-api.md +214 -214
  164. package/docs/deprecated/insforge-auth-sdk.md +99 -99
  165. package/docs/deprecated/insforge-db-api.md +358 -358
  166. package/docs/deprecated/insforge-db-sdk.md +139 -139
  167. package/docs/deprecated/insforge-debug-sdk.md +156 -156
  168. package/docs/deprecated/insforge-debug.md +64 -64
  169. package/docs/deprecated/insforge-instructions.md +123 -123
  170. package/docs/deprecated/insforge-project.md +117 -117
  171. package/docs/deprecated/insforge-storage-api.md +278 -278
  172. package/docs/deprecated/insforge-storage-sdk.md +158 -158
  173. package/docs/docs.json +232 -210
  174. package/docs/examples/framework-guides/nextjs.mdx +131 -131
  175. package/docs/examples/framework-guides/nuxt.mdx +165 -165
  176. package/docs/examples/framework-guides/react.mdx +165 -165
  177. package/docs/examples/framework-guides/svelte.mdx +153 -153
  178. package/docs/examples/framework-guides/vue.mdx +159 -159
  179. package/docs/examples/overview.mdx +67 -67
  180. package/docs/favicon.svg +19 -19
  181. package/docs/images/changelog/dec-2025/ai-integration.png +0 -0
  182. package/docs/images/changelog/dec-2025/ai-models.webp +0 -0
  183. package/docs/images/changelog/dec-2025/alipay-payment.webp +0 -0
  184. package/docs/images/changelog/dec-2025/apple-login.jpg +0 -0
  185. package/docs/images/changelog/dec-2025/mcp-installer.png +0 -0
  186. package/docs/images/changelog/dec-2025/realtime-module.jpg +0 -0
  187. package/docs/images/icons/ai.svg +4 -4
  188. package/docs/images/logos/nextjs.svg +4 -4
  189. package/docs/images/logos/nuxt.svg +4 -4
  190. package/docs/images/logos/react.svg +5 -5
  191. package/docs/images/logos/svelte.svg +4 -4
  192. package/docs/images/logos/vue.svg +5 -5
  193. package/docs/insforge-instructions-sdk.md +89 -88
  194. package/docs/introduction.mdx +45 -45
  195. package/docs/logo/dark.svg +22 -22
  196. package/docs/logo/light.svg +20 -20
  197. package/docs/partnership.mdx +651 -646
  198. package/docs/quickstart.mdx +82 -82
  199. package/docs/showcase.mdx +52 -52
  200. package/docs/snippets/sdk-installation.mdx +21 -21
  201. package/docs/snippets/service-icons.mdx +27 -27
  202. package/examples/oauth/frontend-oauth-example.html +250 -250
  203. package/examples/response-examples.md +443 -443
  204. package/frontend/components.json +17 -17
  205. package/frontend/package.json +69 -69
  206. package/frontend/src/assets/icons/checkbox_checked.svg +6 -6
  207. package/frontend/src/assets/icons/checkbox_undetermined.svg +6 -6
  208. package/frontend/src/assets/icons/checked.svg +3 -3
  209. package/frontend/src/assets/icons/connected.svg +3 -3
  210. package/frontend/src/assets/icons/error.svg +3 -3
  211. package/frontend/src/assets/icons/loader.svg +9 -9
  212. package/frontend/src/assets/icons/pencil.svg +4 -4
  213. package/frontend/src/assets/icons/refresh.svg +4 -4
  214. package/frontend/src/assets/icons/step_active.svg +3 -3
  215. package/frontend/src/assets/icons/step_inactive.svg +11 -11
  216. package/frontend/src/assets/icons/warning.svg +3 -3
  217. package/frontend/src/assets/logos/apple.svg +3 -3
  218. package/frontend/src/assets/logos/claude_code.svg +3 -3
  219. package/frontend/src/assets/logos/cline.svg +6 -6
  220. package/frontend/src/assets/logos/cursor.svg +20 -20
  221. package/frontend/src/assets/logos/discord.svg +8 -8
  222. package/frontend/src/assets/logos/facebook.svg +3 -3
  223. package/frontend/src/assets/logos/gemini.svg +19 -19
  224. package/frontend/src/assets/logos/github.svg +5 -5
  225. package/frontend/src/assets/logos/google.svg +13 -13
  226. package/frontend/src/assets/logos/grok.svg +10 -10
  227. package/frontend/src/assets/logos/insforge_dark.svg +15 -15
  228. package/frontend/src/assets/logos/insforge_light.svg +15 -15
  229. package/frontend/src/assets/logos/instagram.svg +1 -1
  230. package/frontend/src/assets/logos/linkedin.svg +3 -3
  231. package/frontend/src/assets/logos/openai.svg +10 -10
  232. package/frontend/src/assets/logos/roo_code.svg +9 -9
  233. package/frontend/src/assets/logos/spotify.svg +16 -16
  234. package/frontend/src/assets/logos/tiktok.svg +5 -5
  235. package/frontend/src/assets/logos/trae.svg +3 -3
  236. package/frontend/src/assets/logos/windsurf.svg +10 -10
  237. package/frontend/src/assets/logos/x.svg +3 -3
  238. package/frontend/src/components/layout/AppHeader.tsx +9 -10
  239. package/frontend/src/features/auth/components/OAuthConfigDialog.tsx +1 -0
  240. package/frontend/src/features/auth/components/UsersDataGrid.tsx +6 -0
  241. package/frontend/src/features/auth/helpers.tsx +8 -0
  242. package/frontend/src/features/auth/{page → pages}/UsersPage.tsx +0 -28
  243. package/frontend/src/features/database/components/SQLModal.tsx +75 -0
  244. package/frontend/src/features/database/components/TableForm.tsx +0 -4
  245. package/frontend/src/features/database/hooks/useDatabase.ts +66 -0
  246. package/frontend/src/features/database/hooks/useTables.ts +32 -28
  247. package/frontend/src/features/database/index.ts +1 -0
  248. package/frontend/src/features/database/{page → pages}/FunctionsPage.tsx +29 -37
  249. package/frontend/src/features/database/{page → pages}/IndexesPage.tsx +35 -47
  250. package/frontend/src/features/database/{page → pages}/PoliciesPage.tsx +43 -54
  251. package/frontend/src/features/database/{page → pages}/TablesPage.tsx +0 -42
  252. package/frontend/src/features/database/{page → pages}/TriggersPage.tsx +35 -47
  253. package/frontend/src/features/database/services/advance.service.ts +0 -26
  254. package/frontend/src/features/database/services/database.service.ts +55 -0
  255. package/frontend/src/features/database/services/table.service.ts +0 -6
  256. package/frontend/src/features/functions/{page → pages}/FunctionsPage.tsx +21 -44
  257. package/frontend/src/features/functions/{page → pages}/SecretsPage.tsx +11 -9
  258. package/frontend/src/features/logs/hooks/useMcpUsage.ts +13 -66
  259. package/frontend/src/features/realtime/components/ChannelRow.tsx +83 -0
  260. package/frontend/src/features/realtime/components/EditChannelModal.tsx +246 -0
  261. package/frontend/src/features/realtime/components/MessageRow.tsx +85 -0
  262. package/frontend/src/features/realtime/components/RealtimeEmptyState.tsx +30 -0
  263. package/frontend/src/features/realtime/hooks/useRealtime.ts +218 -0
  264. package/frontend/src/features/realtime/index.ts +11 -0
  265. package/frontend/src/features/realtime/pages/RealtimeChannelsPage.tsx +172 -0
  266. package/frontend/src/features/realtime/pages/RealtimeMessagesPage.tsx +211 -0
  267. package/frontend/src/features/realtime/pages/RealtimePermissionsPage.tsx +191 -0
  268. package/frontend/src/features/realtime/services/realtime.service.ts +107 -0
  269. package/frontend/src/features/storage/{page → pages}/StoragePage.tsx +1 -29
  270. package/frontend/src/features/visualizer/components/SchemaVisualizer.tsx +3 -3
  271. package/frontend/src/features/visualizer/{page → pages}/VisualizerPage.tsx +1 -35
  272. package/frontend/src/lib/contexts/SocketContext.tsx +119 -75
  273. package/frontend/src/lib/routing/AppRoutes.tsx +35 -20
  274. package/frontend/src/lib/utils/cloudMessaging.ts +1 -1
  275. package/frontend/src/lib/utils/menuItems.ts +24 -0
  276. package/frontend/src/lib/utils/utils.ts +14 -1
  277. package/frontend/tsconfig.json +25 -25
  278. package/frontend/tsconfig.node.json +9 -9
  279. package/functions/deno.json +24 -24
  280. package/functions/server.ts +315 -315
  281. package/i18n/README.ar.md +130 -130
  282. package/i18n/README.de.md +130 -130
  283. package/i18n/README.es.md +154 -154
  284. package/i18n/README.fr.md +134 -134
  285. package/i18n/README.hi.md +129 -129
  286. package/i18n/README.ja.md +174 -174
  287. package/i18n/README.ko.md +136 -136
  288. package/i18n/README.pt-BR.md +131 -131
  289. package/i18n/README.ru.md +129 -129
  290. package/i18n/README.zh-CN.md +133 -133
  291. package/openapi/ai.yaml +715 -715
  292. package/openapi/auth.yaml +1244 -1244
  293. package/openapi/email.yaml +158 -0
  294. package/openapi/functions.yaml +475 -475
  295. package/openapi/health.yaml +29 -29
  296. package/openapi/logs.yaml +223 -223
  297. package/openapi/metadata.yaml +177 -177
  298. package/openapi/realtime.yaml +699 -0
  299. package/openapi/records.yaml +381 -381
  300. package/openapi/secrets.yaml +370 -370
  301. package/openapi/storage.yaml +875 -875
  302. package/openapi/tables.yaml +463 -463
  303. package/package.json +97 -97
  304. package/shared-schemas/package.json +31 -31
  305. package/shared-schemas/src/ai.schema.ts +63 -59
  306. package/shared-schemas/src/auth-api.schema.ts +352 -339
  307. package/shared-schemas/src/auth.schema.ts +1 -1
  308. package/shared-schemas/src/database-api.schema.ts +32 -1
  309. package/shared-schemas/src/database.schema.ts +39 -0
  310. package/shared-schemas/src/docs.schema.ts +26 -0
  311. package/shared-schemas/src/email-api.schema.ts +30 -0
  312. package/shared-schemas/src/index.ts +4 -0
  313. package/shared-schemas/src/metadata.schema.ts +9 -0
  314. package/shared-schemas/src/realtime-api.schema.ts +111 -0
  315. package/shared-schemas/src/realtime.schema.ts +143 -0
  316. package/shared-schemas/tsconfig.json +21 -21
  317. package/tsconfig.json +7 -7
  318. package/zeabur/README.md +13 -13
  319. package/zeabur/template.yml +1032 -1032
  320. package/.cursor/rules/cursor-rules.mdc +0 -94
  321. package/frontend/src/features/database/hooks/useFullMetadata.ts +0 -18
  322. package/test-gemini.sh +0 -35
  323. package/test-usage-admin.sh +0 -57
  324. package/test-usage.sh +0 -50
  325. /package/frontend/src/features/ai/{page → pages}/AIPage.tsx +0 -0
  326. /package/frontend/src/features/auth/{page → pages}/AuthMethodsPage.tsx +0 -0
  327. /package/frontend/src/features/auth/{page → pages}/ConfigurationPage.tsx +0 -0
  328. /package/frontend/src/features/dashboard/{page → pages}/DashboardPage.tsx +0 -0
  329. /package/frontend/src/features/database/{page → pages}/SQLEditorPage.tsx +0 -0
  330. /package/frontend/src/features/database/{page → pages}/TemplatesPage.tsx +0 -0
  331. /package/frontend/src/features/login/{page → pages}/CloudLoginPage.tsx +0 -0
  332. /package/frontend/src/features/login/{page → pages}/LoginPage.tsx +0 -0
  333. /package/frontend/src/features/logs/{page → pages}/AuditsPage.tsx +0 -0
  334. /package/frontend/src/features/logs/{page → pages}/LogsPage.tsx +0 -0
  335. /package/frontend/src/features/logs/{page → pages}/MCPLogsPage.tsx +0 -0
package/README.md CHANGED
@@ -1,182 +1,182 @@
1
- <div align="center">
2
- <a href="https://insforge.dev">
3
- <img src="assets/banner.png" alt="Insforge Logo">
4
- </a>
5
-
6
- </div>
7
- <p align="center">
8
- <a href="#quickstart-tldr">Get Started</a> ·
9
- <a href="https://docs.insforge.dev/introduction">Documentation</a> ·
10
- <a href="https://discord.com/invite/MPxwj5xVvW">Discord</a>
11
- </p>
12
- <p align="center">
13
- <a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
14
- <a href="https://discord.com/invite/MPxwj5xVvW"><img src="https://img.shields.io/badge/Discord-Join%20Community-7289DA?logo=discord&logoColor=white" alt="Discord"></a>
15
- <a href="https://github.com/InsForge/insforge/stargazers"><img src="https://img.shields.io/github/stars/InsForge/insforge?style=social" alt="GitHub Stars"></a>
16
- </p>
17
-
18
- # InsForge
19
-
20
- **InsForge is the backend built for AI-assisted development.**
21
- Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.
22
- ## Key Features & Use Cases
23
-
24
- ### Core Features:
25
- - **Authentication** - Complete user management system
26
- - **Database** - Flexible data storage and retrieval
27
- - **Storage** - File management and organization
28
- - **AI Integration** - Chat completions and image generation (OpenAI-compatible)
29
- - **Serverless Functions** - Scalable compute power
30
- - **Site Deployment** *(coming soon)* - Easy application deployment
31
-
32
- ### Use Cases: Building full-stack applications using natural language
33
- - **Connect AI agents to InsForge** - Enable Claude, GPT, or other AI agents to manage your backend
34
-
35
- ## Prompt Examples:
36
-
37
- <td align="center">
38
- <img src="assets/userflow.png" alt="userFlow">
39
- <br>
40
- </td>
41
-
42
- ## Quickstart TLDR;
43
-
44
- ### 1. Install and run InsForge
45
-
46
- **Use Docker (Recommended)**
47
- Prerequisites: [Docker](https://www.docker.com/) + [Node.js](https://nodejs.org/)
48
-
49
- ```bash
50
- # Run with Docker
51
- git clone https://github.com/insforge/insforge.git
52
- cd insforge
53
- cp .env.example .env
54
- docker compose up
55
- ```
56
-
57
- ### 2. Connect an AI Agent
58
-
59
- Visit InsForge Dashboard (default: http://localhost:7131), log in, and follow the "Connect" guide, and set up your MCP.
60
-
61
- <div align="center">
62
- <table>
63
- <tr>
64
- <td align="center">
65
- <img src="assets/signin.png" alt="Sign In">
66
- <br>
67
- <em>Sign in to InsForge</em>
68
- </td>
69
- <td align="center">
70
- <img src="assets/mcpInstallv2.png" alt="MCP Configuration">
71
- <br>
72
- <em>Configure MCP connection</em>
73
- </td>
74
- </tr>
75
- </table>
76
- </div>
77
-
78
- ### 3. Test the Connection
79
-
80
- In your agent, send:
81
- ```
82
- I'm using InsForge as my backend platform, fetch InsForge instruction doc to learn more about InsForge.
83
- ```
84
-
85
- <div align="center">
86
- <img src="assets/sampleResponse.png" alt="Successful Connection Response" width="600">
87
- <br>
88
- <em>Sample successful response calling insforge MCP tools</em>
89
- </div>
90
-
91
- ### 4. Start Using InsForge
92
-
93
- Start building your project in a new directory! Build your next todo app, Instagram clone, or online platform in seconds!
94
-
95
- **Sample Project Prompt:**
96
-
97
- "Build an app similar to Reddit with community-based discussion threads using InsForge as the backend platform that has these features:
98
- - Has a "Communities" list where users can browse or create communities
99
- - Each community has its own posts feed
100
- - Users can create posts with a title and body (text or image upload to InsForge storage)
101
- - Users can comment on posts and reply to other comments
102
- - Allows upvoting and downvoting for both posts and comments
103
- - Shows vote counts and comment counts for each post"
104
-
105
- ## Architecture
106
-
107
- ```mermaid
108
- graph TD
109
- subgraph agents[" "]
110
- A1[Claude]
111
- A2[Cursor]
112
- A3[Windsurf]
113
- A4[Coding Agent]
114
- end
115
-
116
- A1 --> MCP[Model Context Protocol]
117
- A2 --> MCP
118
- A3 --> MCP
119
- A4 --> MCP
120
-
121
- MCP -->|fetch-docs| INS[InsForge Instructions]
122
-
123
- MCP -->|create-bucket| S[Storage]
124
- MCP --> AUTH[Auth]
125
- MCP -->|run-raw-sql| DB[Database]
126
- MCP -->|create-function| EF[Edge Function]
127
- MCP --> AI[AI Integration]
128
-
129
- style agents fill:#1a1a1a,stroke:#666,color:#fff
130
- style MCP fill:#000,stroke:#666,color:#fff
131
- style INS fill:#4a5568,stroke:#666,color:#fff
132
- style S fill:#4a5568,stroke:#666,color:#fff
133
- style AUTH fill:#4a5568,stroke:#666,color:#fff
134
- style DB fill:#4a5568,stroke:#666,color:#fff
135
- style EF fill:#4a5568,stroke:#666,color:#fff
136
- style AI fill:#4a5568,stroke:#666,color:#fff
137
- style A1 fill:#4a5568,stroke:#666,color:#fff
138
- style A2 fill:#4a5568,stroke:#666,color:#fff
139
- style A3 fill:#4a5568,stroke:#666,color:#fff
140
- style A4 fill:#4a5568,stroke:#666,color:#fff
141
- ```
142
-
143
-
144
-
145
- ## Contributing
146
-
147
- **Contributing**: If you're interested in contributing, you can check our guide here [CONTRIBUTING.md](CONTRIBUTING.md). We truly appreciate pull requests, all types of help are appreciated!
148
-
149
- **Support**: If you need any help or support, we're responsive on our [Discord channel](https://discord.com/invite/MPxwj5xVvW), and also feel free to email us [info@insforge.dev](mailto:info@insforge.dev) too!
150
-
151
-
152
- ## Documentation & Support
153
-
154
- ### Documentation
155
- - **[Official Docs](https://docs.insforge.dev/introduction)** - Comprehensive guides and API references
156
-
157
- ### Community
158
- - **[Discord](https://discord.com/invite/MPxwj5xVvW)** - Join our vibrant community
159
- - **[Twitter](https://x.com/InsForge_dev)** - Follow for updates and tips
160
-
161
- ### Contact
162
- - **Email**: info@insforge.dev
163
-
164
- ## License
165
-
166
- This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
167
-
168
- ---
169
-
170
- [![Star History Chart](https://api.star-history.com/svg?repos=InsForge/insforge&type=Date)](https://www.star-history.com/#InsForge/insforge&Date)
171
-
172
- ## Translations
173
-
174
- - [Arabic | العربية](/i18n/README.ar.md)
175
- - [Spanish | Español](/i18n/README.es.md)
176
- - [French | Français](/i18n/README.fr.md)
177
- - [Hindi | हिंदी](/i18n/README.hi.md)
178
- - [Japanese | 日本語](/i18n/README.ja.md)
179
- - [Korean | 한국어](/i18n/README.ko.md)
180
- - [Portuguese (Brazilian) / Português Brasileiro](/i18n/README.pt-BR.md)
181
- - [Russian | Русский](/i18n/README.ru.md)
182
- - [Chinese (Simplified) | 简体中文](/i18n/README.zh-CN.md)
1
+ <div align="center">
2
+ <a href="https://insforge.dev">
3
+ <img src="assets/banner.png" alt="Insforge Logo">
4
+ </a>
5
+
6
+ </div>
7
+ <p align="center">
8
+ <a href="#quickstart-tldr">Get Started</a> ·
9
+ <a href="https://docs.insforge.dev/introduction">Documentation</a> ·
10
+ <a href="https://discord.com/invite/MPxwj5xVvW">Discord</a>
11
+ </p>
12
+ <p align="center">
13
+ <a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
14
+ <a href="https://discord.com/invite/MPxwj5xVvW"><img src="https://img.shields.io/badge/Discord-Join%20Community-7289DA?logo=discord&logoColor=white" alt="Discord"></a>
15
+ <a href="https://github.com/InsForge/insforge/stargazers"><img src="https://img.shields.io/github/stars/InsForge/insforge?style=social" alt="GitHub Stars"></a>
16
+ </p>
17
+
18
+ # InsForge
19
+
20
+ **InsForge is the backend built for AI-assisted development.**
21
+ Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.
22
+ ## Key Features & Use Cases
23
+
24
+ ### Core Features:
25
+ - **Authentication** - Complete user management system
26
+ - **Database** - Flexible data storage and retrieval
27
+ - **Storage** - File management and organization
28
+ - **AI Integration** - Chat completions and image generation (OpenAI-compatible)
29
+ - **Serverless Functions** - Scalable compute power
30
+ - **Site Deployment** *(coming soon)* - Easy application deployment
31
+
32
+ ### Use Cases: Building full-stack applications using natural language
33
+ - **Connect AI agents to InsForge** - Enable Claude, GPT, or other AI agents to manage your backend
34
+
35
+ ## Prompt Examples:
36
+
37
+ <td align="center">
38
+ <img src="assets/userflow.png" alt="userFlow">
39
+ <br>
40
+ </td>
41
+
42
+ ## Quickstart TLDR;
43
+
44
+ ### 1. Install and run InsForge
45
+
46
+ **Use Docker (Recommended)**
47
+ Prerequisites: [Docker](https://www.docker.com/) + [Node.js](https://nodejs.org/)
48
+
49
+ ```bash
50
+ # Run with Docker
51
+ git clone https://github.com/insforge/insforge.git
52
+ cd insforge
53
+ cp .env.example .env
54
+ docker compose up
55
+ ```
56
+
57
+ ### 2. Connect an AI Agent
58
+
59
+ Visit InsForge Dashboard (default: http://localhost:7131), log in, and follow the "Connect" guide, and set up your MCP.
60
+
61
+ <div align="center">
62
+ <table>
63
+ <tr>
64
+ <td align="center">
65
+ <img src="assets/signin.png" alt="Sign In">
66
+ <br>
67
+ <em>Sign in to InsForge</em>
68
+ </td>
69
+ <td align="center">
70
+ <img src="assets/mcpInstallv2.png" alt="MCP Configuration">
71
+ <br>
72
+ <em>Configure MCP connection</em>
73
+ </td>
74
+ </tr>
75
+ </table>
76
+ </div>
77
+
78
+ ### 3. Test the Connection
79
+
80
+ In your agent, send:
81
+ ```
82
+ I'm using InsForge as my backend platform, fetch InsForge instruction doc to learn more about InsForge.
83
+ ```
84
+
85
+ <div align="center">
86
+ <img src="assets/sampleResponse.png" alt="Successful Connection Response" width="600">
87
+ <br>
88
+ <em>Sample successful response calling insforge MCP tools</em>
89
+ </div>
90
+
91
+ ### 4. Start Using InsForge
92
+
93
+ Start building your project in a new directory! Build your next todo app, Instagram clone, or online platform in seconds!
94
+
95
+ **Sample Project Prompt:**
96
+
97
+ "Build an app similar to Reddit with community-based discussion threads using InsForge as the backend platform that has these features:
98
+ - Has a "Communities" list where users can browse or create communities
99
+ - Each community has its own posts feed
100
+ - Users can create posts with a title and body (text or image upload to InsForge storage)
101
+ - Users can comment on posts and reply to other comments
102
+ - Allows upvoting and downvoting for both posts and comments
103
+ - Shows vote counts and comment counts for each post"
104
+
105
+ ## Architecture
106
+
107
+ ```mermaid
108
+ graph TD
109
+ subgraph agents[" "]
110
+ A1[Claude]
111
+ A2[Cursor]
112
+ A3[Windsurf]
113
+ A4[Coding Agent]
114
+ end
115
+
116
+ A1 --> MCP[Model Context Protocol]
117
+ A2 --> MCP
118
+ A3 --> MCP
119
+ A4 --> MCP
120
+
121
+ MCP -->|fetch-docs| INS[InsForge Instructions]
122
+
123
+ MCP -->|create-bucket| S[Storage]
124
+ MCP --> AUTH[Auth]
125
+ MCP -->|run-raw-sql| DB[Database]
126
+ MCP -->|create-function| EF[Edge Function]
127
+ MCP --> AI[AI Integration]
128
+
129
+ style agents fill:#1a1a1a,stroke:#666,color:#fff
130
+ style MCP fill:#000,stroke:#666,color:#fff
131
+ style INS fill:#4a5568,stroke:#666,color:#fff
132
+ style S fill:#4a5568,stroke:#666,color:#fff
133
+ style AUTH fill:#4a5568,stroke:#666,color:#fff
134
+ style DB fill:#4a5568,stroke:#666,color:#fff
135
+ style EF fill:#4a5568,stroke:#666,color:#fff
136
+ style AI fill:#4a5568,stroke:#666,color:#fff
137
+ style A1 fill:#4a5568,stroke:#666,color:#fff
138
+ style A2 fill:#4a5568,stroke:#666,color:#fff
139
+ style A3 fill:#4a5568,stroke:#666,color:#fff
140
+ style A4 fill:#4a5568,stroke:#666,color:#fff
141
+ ```
142
+
143
+
144
+
145
+ ## Contributing
146
+
147
+ **Contributing**: If you're interested in contributing, you can check our guide here [CONTRIBUTING.md](CONTRIBUTING.md). We truly appreciate pull requests, all types of help are appreciated!
148
+
149
+ **Support**: If you need any help or support, we're responsive on our [Discord channel](https://discord.com/invite/MPxwj5xVvW), and also feel free to email us [info@insforge.dev](mailto:info@insforge.dev) too!
150
+
151
+
152
+ ## Documentation & Support
153
+
154
+ ### Documentation
155
+ - **[Official Docs](https://docs.insforge.dev/introduction)** - Comprehensive guides and API references
156
+
157
+ ### Community
158
+ - **[Discord](https://discord.com/invite/MPxwj5xVvW)** - Join our vibrant community
159
+ - **[Twitter](https://x.com/InsForge_dev)** - Follow for updates and tips
160
+
161
+ ### Contact
162
+ - **Email**: info@insforge.dev
163
+
164
+ ## License
165
+
166
+ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
167
+
168
+ ---
169
+
170
+ [![Star History Chart](https://api.star-history.com/svg?repos=InsForge/insforge&type=Date)](https://www.star-history.com/#InsForge/insforge&Date)
171
+
172
+ ## Translations
173
+
174
+ - [Arabic | العربية](/i18n/README.ar.md)
175
+ - [Spanish | Español](/i18n/README.es.md)
176
+ - [French | Français](/i18n/README.fr.md)
177
+ - [Hindi | हिंदी](/i18n/README.hi.md)
178
+ - [Japanese | 日本語](/i18n/README.ja.md)
179
+ - [Korean | 한국어](/i18n/README.ko.md)
180
+ - [Portuguese (Brazilian) / Português Brasileiro](/i18n/README.pt-BR.md)
181
+ - [Russian | Русский](/i18n/README.ru.md)
182
+ - [Chinese (Simplified) | 简体中文](/i18n/README.zh-CN.md)
package/assets/Dark.svg CHANGED
@@ -1,23 +1,23 @@
1
- <svg width="1080" height="400" viewBox="0 0 1080 400" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="1080" height="400" fill="black"/>
3
- <path d="M253 281C253 284 251.664 286.164 249 287.5C247.739 288.132 247 288.5 245.8 288.5C245 288.5 243.54 288.193 242.5 287.5C239.5 285.5 164 209 164 209L192 181L248.607 237.607C251.42 240.42 253 244.222 253 248.201V281Z" fill="url(#paint0_linear_101_25)"/>
4
- <path d="M136.244 230.934L107.134 201.96C104.302 199.142 104.302 194.559 107.134 191.741L170.07 129.1C171.421 127.755 173.25 127 175.156 127H199.878C201.784 127 203.612 127.755 204.963 129.1L221.694 145.751C225.657 149.697 225.657 156.113 221.694 160.058L150.484 230.934C146.546 234.853 140.182 234.853 136.244 230.934Z" fill="url(#paint1_linear_101_25)"/>
5
- <path d="M949.564 209.58C949.328 203.246 947.74 198.204 944.797 194.456C941.972 190.578 937.912 188.639 932.616 188.639C927.319 188.639 922.788 190.707 919.022 194.843C915.373 198.851 913.019 204.732 911.96 212.488H949.564V209.58ZM937.029 270.659C922.788 270.659 911.548 266.005 903.309 256.698C895.07 247.391 890.951 235.175 890.951 220.051C890.951 204.797 894.835 192.711 902.603 183.791C910.371 174.872 920.081 170.412 931.733 170.412C943.385 170.412 952.624 174.29 959.45 182.046C966.277 189.802 969.69 201.113 969.69 215.979C969.69 219.598 969.278 224.252 968.454 229.94H912.313C913.843 237.049 917.021 242.479 921.846 246.227C926.79 249.976 933.439 251.85 941.796 251.85C950.152 251.85 957.567 249.265 964.041 244.094V264.26C957.803 268.526 948.799 270.659 937.029 270.659Z" fill="white"/>
6
- <path d="M832.287 190.19C826.402 190.19 821.694 192.84 818.163 198.14C814.632 203.31 812.867 210.42 812.867 219.469C812.867 228.518 814.691 235.498 818.34 240.41C821.988 245.193 826.637 247.585 832.287 247.585C838.054 247.585 842.88 245.128 846.764 240.216C850.648 235.175 852.59 228.065 852.59 218.887C852.59 209.58 850.706 202.47 846.94 197.558C843.174 192.646 838.289 190.19 832.287 190.19ZM873.775 260.77C873.775 276.282 869.656 287.916 861.417 295.672C853.296 303.557 843.115 307.5 830.875 307.5C818.752 307.5 808.277 305.173 799.45 300.52V276.864C807.453 283.068 817.045 286.171 828.226 286.171C844.468 286.171 852.59 277.639 852.59 260.576V252.044C847.176 261.739 839.054 266.587 828.226 266.587C817.516 266.587 808.571 262.58 801.392 254.565C794.33 246.421 790.799 234.981 790.799 220.244C790.799 205.379 794.153 193.357 800.862 184.179C807.688 174.872 816.633 170.218 827.697 170.218C838.878 170.218 847.176 175.324 852.59 185.536V171.381H873.775V260.77Z" fill="white"/>
7
- <path d="M753.806 269.689H732.444L732.62 171.381H753.806V188.833C757.925 176.681 765.458 170.606 776.404 170.606C778.875 170.606 780.876 170.8 782.406 171.188V193.68C779.699 192.387 776.698 191.741 773.402 191.741C767.635 191.741 762.927 194.326 759.279 199.497C755.63 204.668 753.806 211.131 753.806 218.887V269.689Z" fill="white"/>
8
- <path d="M671.46 188.832C664.516 188.832 659.219 191.87 655.571 197.946C652.04 204.021 650.275 211.648 650.275 220.826C650.275 229.875 652.099 237.437 655.747 243.513C659.396 249.588 664.634 252.626 671.46 252.626C678.286 252.626 683.465 249.653 686.996 243.706C690.527 237.76 692.292 230.133 692.292 220.826C692.292 211.519 690.586 203.892 687.172 197.946C683.759 191.87 678.522 188.832 671.46 188.832ZM671.637 169.83C685.054 169.83 695.529 174.613 703.062 184.179C710.594 193.615 714.36 205.702 714.36 220.438C714.36 235.175 710.535 247.326 702.885 256.892C695.352 266.458 684.76 271.24 671.107 271.24C657.572 271.24 646.979 266.587 639.329 257.28C631.796 247.972 628.03 235.95 628.03 221.214C628.03 206.477 631.973 194.262 639.858 184.567C647.744 174.742 658.337 169.83 671.637 169.83Z" fill="white"/>
9
- <path d="M609.312 217.53H568V269.689H545.579V139H615.314V158.972H568V197.558H609.312V217.53Z" fill="white"/>
10
- <path d="M527.791 241.38C527.791 250.558 524.79 257.732 518.787 262.903C512.784 268.073 504.487 270.659 493.894 270.659C483.419 270.659 474.768 268.655 467.942 264.648V243.319C475.828 249.136 484.361 252.044 493.541 252.044C497.425 252.044 500.426 251.269 502.545 249.717C504.781 248.037 505.899 246.098 505.899 243.9C505.899 241.574 505.546 239.764 504.84 238.471C504.134 237.049 502.78 235.692 500.779 234.399C498.19 232.719 495.542 231.297 492.835 230.133C490.246 228.841 488.833 228.13 488.598 228C488.48 227.871 488.245 227.742 487.892 227.613C487.539 227.483 487.244 227.354 487.009 227.225C473.945 220.762 467.412 211.454 467.412 199.303C467.412 190.254 470.531 183.145 476.769 177.974C483.007 172.803 490.716 170.218 499.897 170.218C509.195 170.218 516.845 171.64 522.848 174.484V195.037C516.963 191.159 509.607 189.22 500.779 189.22C497.131 189.22 494.247 190.125 492.129 191.935C490.128 193.615 489.127 195.813 489.127 198.528C489.127 200.725 489.657 202.406 490.716 203.569C491.776 204.732 492.658 205.637 493.365 206.284C494.071 206.93 495.071 207.641 496.366 208.416C499.544 210.097 501.956 211.325 503.604 212.101C511.725 215.849 517.787 220.051 521.788 224.704C525.79 229.229 527.791 234.787 527.791 241.38Z" fill="white"/>
11
- <path d="M447.21 269.689H426.025V209.192C426.025 202.729 424.613 197.881 421.788 194.649C418.963 191.289 414.962 189.608 409.783 189.608C404.604 189.608 400.132 191.999 396.365 196.782C392.599 201.436 390.716 208.158 390.716 216.948V269.689H369.531V171.381H390.716V188.251C395.777 176.229 404.957 170.218 418.257 170.218C427.202 170.218 434.264 173.191 439.442 179.137C444.621 185.084 447.21 193.486 447.21 204.345V269.689Z" fill="white"/>
12
- <path d="M344.245 269.689H322V139H344.245V269.689Z" fill="white"/>
13
- <defs>
14
- <linearGradient id="paint0_linear_101_25" x1="264.639" y1="302.534" x2="192.289" y2="165.357" gradientUnits="userSpaceOnUse">
15
- <stop stop-color="#009DFF"/>
16
- <stop offset="1" stop-color="#004E75"/>
17
- </linearGradient>
18
- <linearGradient id="paint1_linear_101_25" x1="210.858" y1="136.372" x2="87.5817" y2="259.648" gradientUnits="userSpaceOnUse">
19
- <stop stop-color="#009DFF"/>
20
- <stop offset="1" stop-color="#004E75"/>
21
- </linearGradient>
22
- </defs>
23
- </svg>
1
+ <svg width="1080" height="400" viewBox="0 0 1080 400" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="1080" height="400" fill="black"/>
3
+ <path d="M253 281C253 284 251.664 286.164 249 287.5C247.739 288.132 247 288.5 245.8 288.5C245 288.5 243.54 288.193 242.5 287.5C239.5 285.5 164 209 164 209L192 181L248.607 237.607C251.42 240.42 253 244.222 253 248.201V281Z" fill="url(#paint0_linear_101_25)"/>
4
+ <path d="M136.244 230.934L107.134 201.96C104.302 199.142 104.302 194.559 107.134 191.741L170.07 129.1C171.421 127.755 173.25 127 175.156 127H199.878C201.784 127 203.612 127.755 204.963 129.1L221.694 145.751C225.657 149.697 225.657 156.113 221.694 160.058L150.484 230.934C146.546 234.853 140.182 234.853 136.244 230.934Z" fill="url(#paint1_linear_101_25)"/>
5
+ <path d="M949.564 209.58C949.328 203.246 947.74 198.204 944.797 194.456C941.972 190.578 937.912 188.639 932.616 188.639C927.319 188.639 922.788 190.707 919.022 194.843C915.373 198.851 913.019 204.732 911.96 212.488H949.564V209.58ZM937.029 270.659C922.788 270.659 911.548 266.005 903.309 256.698C895.07 247.391 890.951 235.175 890.951 220.051C890.951 204.797 894.835 192.711 902.603 183.791C910.371 174.872 920.081 170.412 931.733 170.412C943.385 170.412 952.624 174.29 959.45 182.046C966.277 189.802 969.69 201.113 969.69 215.979C969.69 219.598 969.278 224.252 968.454 229.94H912.313C913.843 237.049 917.021 242.479 921.846 246.227C926.79 249.976 933.439 251.85 941.796 251.85C950.152 251.85 957.567 249.265 964.041 244.094V264.26C957.803 268.526 948.799 270.659 937.029 270.659Z" fill="white"/>
6
+ <path d="M832.287 190.19C826.402 190.19 821.694 192.84 818.163 198.14C814.632 203.31 812.867 210.42 812.867 219.469C812.867 228.518 814.691 235.498 818.34 240.41C821.988 245.193 826.637 247.585 832.287 247.585C838.054 247.585 842.88 245.128 846.764 240.216C850.648 235.175 852.59 228.065 852.59 218.887C852.59 209.58 850.706 202.47 846.94 197.558C843.174 192.646 838.289 190.19 832.287 190.19ZM873.775 260.77C873.775 276.282 869.656 287.916 861.417 295.672C853.296 303.557 843.115 307.5 830.875 307.5C818.752 307.5 808.277 305.173 799.45 300.52V276.864C807.453 283.068 817.045 286.171 828.226 286.171C844.468 286.171 852.59 277.639 852.59 260.576V252.044C847.176 261.739 839.054 266.587 828.226 266.587C817.516 266.587 808.571 262.58 801.392 254.565C794.33 246.421 790.799 234.981 790.799 220.244C790.799 205.379 794.153 193.357 800.862 184.179C807.688 174.872 816.633 170.218 827.697 170.218C838.878 170.218 847.176 175.324 852.59 185.536V171.381H873.775V260.77Z" fill="white"/>
7
+ <path d="M753.806 269.689H732.444L732.62 171.381H753.806V188.833C757.925 176.681 765.458 170.606 776.404 170.606C778.875 170.606 780.876 170.8 782.406 171.188V193.68C779.699 192.387 776.698 191.741 773.402 191.741C767.635 191.741 762.927 194.326 759.279 199.497C755.63 204.668 753.806 211.131 753.806 218.887V269.689Z" fill="white"/>
8
+ <path d="M671.46 188.832C664.516 188.832 659.219 191.87 655.571 197.946C652.04 204.021 650.275 211.648 650.275 220.826C650.275 229.875 652.099 237.437 655.747 243.513C659.396 249.588 664.634 252.626 671.46 252.626C678.286 252.626 683.465 249.653 686.996 243.706C690.527 237.76 692.292 230.133 692.292 220.826C692.292 211.519 690.586 203.892 687.172 197.946C683.759 191.87 678.522 188.832 671.46 188.832ZM671.637 169.83C685.054 169.83 695.529 174.613 703.062 184.179C710.594 193.615 714.36 205.702 714.36 220.438C714.36 235.175 710.535 247.326 702.885 256.892C695.352 266.458 684.76 271.24 671.107 271.24C657.572 271.24 646.979 266.587 639.329 257.28C631.796 247.972 628.03 235.95 628.03 221.214C628.03 206.477 631.973 194.262 639.858 184.567C647.744 174.742 658.337 169.83 671.637 169.83Z" fill="white"/>
9
+ <path d="M609.312 217.53H568V269.689H545.579V139H615.314V158.972H568V197.558H609.312V217.53Z" fill="white"/>
10
+ <path d="M527.791 241.38C527.791 250.558 524.79 257.732 518.787 262.903C512.784 268.073 504.487 270.659 493.894 270.659C483.419 270.659 474.768 268.655 467.942 264.648V243.319C475.828 249.136 484.361 252.044 493.541 252.044C497.425 252.044 500.426 251.269 502.545 249.717C504.781 248.037 505.899 246.098 505.899 243.9C505.899 241.574 505.546 239.764 504.84 238.471C504.134 237.049 502.78 235.692 500.779 234.399C498.19 232.719 495.542 231.297 492.835 230.133C490.246 228.841 488.833 228.13 488.598 228C488.48 227.871 488.245 227.742 487.892 227.613C487.539 227.483 487.244 227.354 487.009 227.225C473.945 220.762 467.412 211.454 467.412 199.303C467.412 190.254 470.531 183.145 476.769 177.974C483.007 172.803 490.716 170.218 499.897 170.218C509.195 170.218 516.845 171.64 522.848 174.484V195.037C516.963 191.159 509.607 189.22 500.779 189.22C497.131 189.22 494.247 190.125 492.129 191.935C490.128 193.615 489.127 195.813 489.127 198.528C489.127 200.725 489.657 202.406 490.716 203.569C491.776 204.732 492.658 205.637 493.365 206.284C494.071 206.93 495.071 207.641 496.366 208.416C499.544 210.097 501.956 211.325 503.604 212.101C511.725 215.849 517.787 220.051 521.788 224.704C525.79 229.229 527.791 234.787 527.791 241.38Z" fill="white"/>
11
+ <path d="M447.21 269.689H426.025V209.192C426.025 202.729 424.613 197.881 421.788 194.649C418.963 191.289 414.962 189.608 409.783 189.608C404.604 189.608 400.132 191.999 396.365 196.782C392.599 201.436 390.716 208.158 390.716 216.948V269.689H369.531V171.381H390.716V188.251C395.777 176.229 404.957 170.218 418.257 170.218C427.202 170.218 434.264 173.191 439.442 179.137C444.621 185.084 447.21 193.486 447.21 204.345V269.689Z" fill="white"/>
12
+ <path d="M344.245 269.689H322V139H344.245V269.689Z" fill="white"/>
13
+ <defs>
14
+ <linearGradient id="paint0_linear_101_25" x1="264.639" y1="302.534" x2="192.289" y2="165.357" gradientUnits="userSpaceOnUse">
15
+ <stop stop-color="#009DFF"/>
16
+ <stop offset="1" stop-color="#004E75"/>
17
+ </linearGradient>
18
+ <linearGradient id="paint1_linear_101_25" x1="210.858" y1="136.372" x2="87.5817" y2="259.648" gradientUnits="userSpaceOnUse">
19
+ <stop stop-color="#009DFF"/>
20
+ <stop offset="1" stop-color="#004E75"/>
21
+ </linearGradient>
22
+ </defs>
23
+ </svg>
package/auth/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "insforge-auth",
3
- "version": "1.0.0",
4
- "author": "Insforge",
5
- "description": "Built-in authentication UI for Insforge users",
6
- "type": "module",
7
- "scripts": {
8
- "dev": "vite",
9
- "build": "vite build",
10
- "preview": "vite preview"
11
- },
12
- "dependencies": {
13
- "@insforge/react": "^1.0.0",
14
- "@insforge/shared-schemas": "^1.1.23",
15
- "react": "^19.2.0",
16
- "react-dom": "^19.2.0",
17
- "react-router-dom": "^7.7.0"
18
- },
19
- "devDependencies": {
20
- "@tailwindcss/vite": "^4.1.11",
21
- "@types/react": "^19.2.2",
22
- "@types/react-dom": "^19.2.2",
23
- "@vitejs/plugin-react": "^4.7.0",
24
- "tailwindcss": "^4.1.11",
25
- "tailwindcss-animate": "^1.0.7",
26
- "vite": "^7.0.5"
27
- }
28
- }
1
+ {
2
+ "name": "insforge-auth",
3
+ "version": "1.0.0",
4
+ "author": "Insforge",
5
+ "description": "Built-in authentication UI for Insforge users",
6
+ "type": "module",
7
+ "scripts": {
8
+ "dev": "vite",
9
+ "build": "vite build",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "@insforge/react": "^1.0.3",
14
+ "@insforge/shared-schemas": "^1.1.23",
15
+ "react": "^19.2.1",
16
+ "react-dom": "^19.2.1",
17
+ "react-router-dom": "^7.7.0"
18
+ },
19
+ "devDependencies": {
20
+ "@tailwindcss/vite": "^4.1.11",
21
+ "@types/react": "^19.2.2",
22
+ "@types/react-dom": "^19.2.2",
23
+ "@vitejs/plugin-react": "^4.7.0",
24
+ "tailwindcss": "^4.1.11",
25
+ "tailwindcss-animate": "^1.0.7",
26
+ "vite": "^7.0.5"
27
+ }
28
+ }