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.
- package/.claude-plugin/marketplace.json +20 -20
- package/.dockerignore +60 -60
- package/.env.example +83 -77
- package/.github/ISSUE_TEMPLATE/bug_report.yml +36 -36
- package/.github/ISSUE_TEMPLATE/config.yml +11 -11
- package/.github/ISSUE_TEMPLATE/feature_request.yml +26 -26
- package/.github/PULL_REQUEST_TEMPLATE.md +7 -7
- package/.github/copilot-instructions.md +146 -146
- package/.github/workflows/build-image.yml +65 -65
- package/.github/workflows/ci-premerge-check.yml +23 -23
- package/.github/workflows/e2e.yml +63 -63
- package/.github/workflows/lint-and-format.yml +32 -32
- package/.prettierignore +64 -64
- package/CHANGELOG.md +44 -44
- package/CLAUDE_PLUGIN.md +104 -104
- package/CODE_OF_CONDUCT.md +128 -128
- package/CONTRIBUTING.md +125 -125
- package/Dockerfile +30 -30
- package/GITHUB_OAUTH_SETUP.md +49 -49
- package/GOOGLE_OAUTH_SETUP.md +148 -148
- package/LICENSE +201 -201
- package/README.md +182 -182
- package/assets/Dark.svg +23 -23
- package/auth/package.json +28 -28
- package/auth/src/lib/broadcastService.ts +117 -115
- package/auth/src/pages/SignInPage.tsx +60 -57
- package/auth/src/pages/SignUpPage.tsx +60 -57
- package/auth/tsconfig.json +32 -32
- package/auth/tsconfig.node.json +11 -11
- package/backend/package.json +78 -75
- package/backend/src/api/routes/ai/index.routes.ts +3 -3
- package/backend/src/api/routes/auth/index.routes.ts +667 -570
- package/backend/src/api/routes/auth/oauth.routes.ts +473 -448
- package/backend/src/api/routes/database/advance.routes.ts +37 -16
- package/backend/src/api/routes/database/index.routes.ts +78 -1
- package/backend/src/api/routes/database/records.routes.ts +10 -10
- package/backend/src/api/routes/database/tables.routes.ts +0 -14
- package/backend/src/api/routes/docs/index.routes.ts +75 -76
- package/backend/src/api/routes/email/index.routes.ts +35 -0
- package/backend/src/api/routes/functions/index.routes.ts +18 -12
- package/backend/src/api/routes/metadata/index.routes.ts +12 -0
- package/backend/src/api/routes/realtime/channels.routes.ts +81 -0
- package/backend/src/api/routes/realtime/index.routes.ts +12 -0
- package/backend/src/api/routes/realtime/messages.routes.ts +48 -0
- package/backend/src/api/routes/realtime/permissions.routes.ts +19 -0
- package/backend/src/api/routes/storage/index.routes.ts +18 -12
- package/backend/src/api/routes/usage/index.routes.ts +6 -4
- package/backend/src/infra/database/database.manager.ts +14 -1
- package/backend/src/infra/database/migrations/000_create-base-tables.sql +141 -141
- package/backend/src/infra/database/migrations/001_create-helper-functions.sql +40 -40
- package/backend/src/infra/database/migrations/002_rename-auth-tables.sql +29 -29
- package/backend/src/infra/database/migrations/003_create-users-table.sql +55 -55
- package/backend/src/infra/database/migrations/004_add-reload-postgrest-func.sql +23 -23
- package/backend/src/infra/database/migrations/005_enable-project-admin-modify-users.sql +29 -29
- package/backend/src/infra/database/migrations/006_modify-ai-usage-table.sql +24 -24
- package/backend/src/infra/database/migrations/007_drop-metadata-table.sql +1 -1
- package/backend/src/infra/database/migrations/008_add-system-tables.sql +76 -76
- package/backend/src/infra/database/migrations/009_add-function-secrets.sql +23 -23
- package/backend/src/infra/database/migrations/010_modify-ai-config-modalities.sql +93 -93
- package/backend/src/infra/database/migrations/011_refactor-secrets-table.sql +15 -15
- package/backend/src/infra/database/migrations/012_add-storage-uploaded-by.sql +7 -7
- package/backend/src/infra/database/migrations/013_create-auth-schema-functions.sql +44 -44
- package/backend/src/infra/database/migrations/014_add-updated-at-trigger-user-table.sql +7 -7
- package/backend/src/infra/database/migrations/015_create-auth-config-and-email-otp-tables.sql +59 -59
- package/backend/src/infra/database/migrations/016_update-auth-config-and-email-otp.sql +24 -24
- package/backend/src/infra/database/migrations/017_create-realtime-schema.sql +233 -0
- package/backend/src/infra/realtime/realtime.manager.ts +246 -0
- package/backend/src/infra/realtime/webhook-sender.ts +82 -0
- package/backend/src/infra/security/token.manager.ts +219 -125
- package/backend/src/infra/socket/socket.manager.ts +198 -64
- package/backend/src/providers/ai/openrouter.provider.ts +12 -9
- package/backend/src/providers/email/base.provider.ts +4 -7
- package/backend/src/providers/email/cloud.provider.ts +84 -0
- package/backend/src/providers/oauth/apple.provider.ts +266 -0
- package/backend/src/providers/oauth/index.ts +1 -0
- package/backend/src/server.ts +317 -284
- package/backend/src/services/ai/ai-model.service.ts +5 -5
- package/backend/src/services/ai/chat-completion.service.ts +4 -4
- package/backend/src/services/ai/image-generation.service.ts +3 -3
- package/backend/src/services/auth/auth.service.ts +14 -0
- package/backend/src/services/database/database-table.service.ts +0 -9
- package/backend/src/services/database/database.service.ts +127 -0
- package/backend/src/services/email/email.service.ts +5 -7
- package/backend/src/services/realtime/index.ts +3 -0
- package/backend/src/services/realtime/realtime-auth.service.ts +104 -0
- package/backend/src/services/realtime/realtime-channel.service.ts +237 -0
- package/backend/src/services/realtime/realtime-message.service.ts +260 -0
- package/backend/src/types/auth.ts +11 -0
- package/backend/src/types/realtime.ts +18 -0
- package/backend/src/types/socket.ts +7 -31
- package/backend/src/utils/cookies.ts +35 -0
- package/backend/src/utils/s3-config-loader.ts +64 -0
- package/backend/src/utils/seed.ts +301 -298
- package/backend/src/utils/sql-parser.ts +90 -0
- package/backend/tests/README.md +133 -133
- package/backend/tests/cleanup-all-test-data.sh +230 -230
- package/backend/tests/cloud/test-s3-multitenant.sh +131 -131
- package/backend/tests/local/comprehensive-curl-tests.sh +155 -155
- package/backend/tests/local/test-ai-config.sh +129 -129
- package/backend/tests/local/test-ai-usage.sh +80 -80
- package/backend/tests/local/test-auth-router.sh +143 -143
- package/backend/tests/local/test-database-router.sh +222 -222
- package/backend/tests/local/test-e2e.sh +240 -240
- package/backend/tests/local/test-fk-errors.sh +96 -96
- package/backend/tests/local/test-functions.sh +123 -123
- package/backend/tests/local/test-id-field.sh +200 -200
- package/backend/tests/local/test-logs.sh +132 -132
- package/backend/tests/local/test-public-bucket.sh +264 -264
- package/backend/tests/local/test-secrets.sh +249 -249
- package/backend/tests/local/test-serverless-functions.sh.disabled +325 -325
- package/backend/tests/local/test-traditional-rest.sh +208 -208
- package/backend/tests/manual/README.md +50 -50
- package/backend/tests/manual/create-large-table-simple.sql +10 -10
- package/backend/tests/manual/seed-large-table.sql +100 -100
- package/backend/tests/manual/setup-large-table-extras.sql +33 -33
- package/backend/tests/manual/test-bulk-upsert.sh +409 -409
- package/backend/tests/manual/test-database-advance.sh +296 -296
- package/backend/tests/manual/test-postgrest-stability.sh +191 -191
- package/backend/tests/manual/test-rawsql-export-import.sh +411 -411
- package/backend/tests/manual/test-rawsql-modes.sh +244 -244
- package/backend/tests/manual/test-universal-storage.sh +263 -263
- package/backend/tests/manual/test-users.sql +17 -17
- package/backend/tests/run-all-tests.sh +139 -139
- package/backend/tests/setup.ts +0 -0
- package/backend/tests/test-config.sh +338 -338
- package/backend/tests/unit/analyze-query.test.ts +697 -0
- package/backend/tsconfig.json +22 -22
- package/claude-plugin/.claude-plugin/plugin.json +24 -24
- package/claude-plugin/README.md +133 -133
- package/claude-plugin/skills/insforge-schema-patterns/SKILL.md +270 -270
- package/docker-compose.prod.yml +204 -200
- package/docker-compose.yml +232 -228
- package/docker-init/db/db-init.sql +97 -97
- package/docker-init/db/jwt.sql +5 -5
- package/docker-init/db/postgresql.conf +16 -16
- package/docker-init/logs/vector.yml +236 -236
- package/docs/README.md +44 -44
- package/docs/agent-docs/real-time.md +269 -0
- package/docs/changelog.mdx +119 -67
- package/docs/core-concepts/ai/architecture.mdx +372 -372
- package/docs/core-concepts/ai/sdk.mdx +213 -213
- package/docs/core-concepts/authentication/architecture.mdx +278 -278
- package/docs/core-concepts/authentication/sdk.mdx +414 -414
- package/docs/core-concepts/authentication/ui-components/customization.mdx +529 -529
- package/docs/core-concepts/authentication/ui-components/nextjs.mdx +221 -221
- package/docs/core-concepts/authentication/ui-components/react-router.mdx +184 -184
- package/docs/core-concepts/authentication/ui-components/react.mdx +129 -129
- package/docs/core-concepts/database/architecture.mdx +255 -255
- package/docs/core-concepts/database/sdk.mdx +382 -382
- package/docs/core-concepts/email/architecture.mdx +101 -0
- package/docs/core-concepts/email/sdk.mdx +53 -0
- package/docs/core-concepts/functions/architecture.mdx +105 -105
- package/docs/core-concepts/functions/sdk.mdx +184 -184
- package/docs/core-concepts/realtime/architecture.mdx +446 -0
- package/docs/core-concepts/realtime/sdk.mdx +409 -0
- package/docs/core-concepts/storage/architecture.mdx +243 -243
- package/docs/core-concepts/storage/sdk.mdx +253 -253
- package/docs/deployment/README.md +94 -94
- package/docs/deployment/deploy-to-aws-ec2.md +564 -564
- package/docs/deployment/deploy-to-azure-virtual-machines.md +312 -312
- package/docs/deployment/deploy-to-google-cloud-compute-engine.md +613 -613
- package/docs/deployment/deploy-to-render.md +441 -441
- package/docs/deprecated/insforge-auth-api.md +214 -214
- package/docs/deprecated/insforge-auth-sdk.md +99 -99
- package/docs/deprecated/insforge-db-api.md +358 -358
- package/docs/deprecated/insforge-db-sdk.md +139 -139
- package/docs/deprecated/insforge-debug-sdk.md +156 -156
- package/docs/deprecated/insforge-debug.md +64 -64
- package/docs/deprecated/insforge-instructions.md +123 -123
- package/docs/deprecated/insforge-project.md +117 -117
- package/docs/deprecated/insforge-storage-api.md +278 -278
- package/docs/deprecated/insforge-storage-sdk.md +158 -158
- package/docs/docs.json +232 -210
- package/docs/examples/framework-guides/nextjs.mdx +131 -131
- package/docs/examples/framework-guides/nuxt.mdx +165 -165
- package/docs/examples/framework-guides/react.mdx +165 -165
- package/docs/examples/framework-guides/svelte.mdx +153 -153
- package/docs/examples/framework-guides/vue.mdx +159 -159
- package/docs/examples/overview.mdx +67 -67
- package/docs/favicon.svg +19 -19
- package/docs/images/changelog/dec-2025/ai-integration.png +0 -0
- package/docs/images/changelog/dec-2025/ai-models.webp +0 -0
- package/docs/images/changelog/dec-2025/alipay-payment.webp +0 -0
- package/docs/images/changelog/dec-2025/apple-login.jpg +0 -0
- package/docs/images/changelog/dec-2025/mcp-installer.png +0 -0
- package/docs/images/changelog/dec-2025/realtime-module.jpg +0 -0
- package/docs/images/icons/ai.svg +4 -4
- package/docs/images/logos/nextjs.svg +4 -4
- package/docs/images/logos/nuxt.svg +4 -4
- package/docs/images/logos/react.svg +5 -5
- package/docs/images/logos/svelte.svg +4 -4
- package/docs/images/logos/vue.svg +5 -5
- package/docs/insforge-instructions-sdk.md +89 -88
- package/docs/introduction.mdx +45 -45
- package/docs/logo/dark.svg +22 -22
- package/docs/logo/light.svg +20 -20
- package/docs/partnership.mdx +651 -646
- package/docs/quickstart.mdx +82 -82
- package/docs/showcase.mdx +52 -52
- package/docs/snippets/sdk-installation.mdx +21 -21
- package/docs/snippets/service-icons.mdx +27 -27
- package/examples/oauth/frontend-oauth-example.html +250 -250
- package/examples/response-examples.md +443 -443
- package/frontend/components.json +17 -17
- package/frontend/package.json +69 -69
- package/frontend/src/assets/icons/checkbox_checked.svg +6 -6
- package/frontend/src/assets/icons/checkbox_undetermined.svg +6 -6
- package/frontend/src/assets/icons/checked.svg +3 -3
- package/frontend/src/assets/icons/connected.svg +3 -3
- package/frontend/src/assets/icons/error.svg +3 -3
- package/frontend/src/assets/icons/loader.svg +9 -9
- package/frontend/src/assets/icons/pencil.svg +4 -4
- package/frontend/src/assets/icons/refresh.svg +4 -4
- package/frontend/src/assets/icons/step_active.svg +3 -3
- package/frontend/src/assets/icons/step_inactive.svg +11 -11
- package/frontend/src/assets/icons/warning.svg +3 -3
- package/frontend/src/assets/logos/apple.svg +3 -3
- package/frontend/src/assets/logos/claude_code.svg +3 -3
- package/frontend/src/assets/logos/cline.svg +6 -6
- package/frontend/src/assets/logos/cursor.svg +20 -20
- package/frontend/src/assets/logos/discord.svg +8 -8
- package/frontend/src/assets/logos/facebook.svg +3 -3
- package/frontend/src/assets/logos/gemini.svg +19 -19
- package/frontend/src/assets/logos/github.svg +5 -5
- package/frontend/src/assets/logos/google.svg +13 -13
- package/frontend/src/assets/logos/grok.svg +10 -10
- package/frontend/src/assets/logos/insforge_dark.svg +15 -15
- package/frontend/src/assets/logos/insforge_light.svg +15 -15
- package/frontend/src/assets/logos/instagram.svg +1 -1
- package/frontend/src/assets/logos/linkedin.svg +3 -3
- package/frontend/src/assets/logos/openai.svg +10 -10
- package/frontend/src/assets/logos/roo_code.svg +9 -9
- package/frontend/src/assets/logos/spotify.svg +16 -16
- package/frontend/src/assets/logos/tiktok.svg +5 -5
- package/frontend/src/assets/logos/trae.svg +3 -3
- package/frontend/src/assets/logos/windsurf.svg +10 -10
- package/frontend/src/assets/logos/x.svg +3 -3
- package/frontend/src/components/layout/AppHeader.tsx +9 -10
- package/frontend/src/features/auth/components/OAuthConfigDialog.tsx +1 -0
- package/frontend/src/features/auth/components/UsersDataGrid.tsx +6 -0
- package/frontend/src/features/auth/helpers.tsx +8 -0
- package/frontend/src/features/auth/{page → pages}/UsersPage.tsx +0 -28
- package/frontend/src/features/database/components/SQLModal.tsx +75 -0
- package/frontend/src/features/database/components/TableForm.tsx +0 -4
- package/frontend/src/features/database/hooks/useDatabase.ts +66 -0
- package/frontend/src/features/database/hooks/useTables.ts +32 -28
- package/frontend/src/features/database/index.ts +1 -0
- package/frontend/src/features/database/{page → pages}/FunctionsPage.tsx +29 -37
- package/frontend/src/features/database/{page → pages}/IndexesPage.tsx +35 -47
- package/frontend/src/features/database/{page → pages}/PoliciesPage.tsx +43 -54
- package/frontend/src/features/database/{page → pages}/TablesPage.tsx +0 -42
- package/frontend/src/features/database/{page → pages}/TriggersPage.tsx +35 -47
- package/frontend/src/features/database/services/advance.service.ts +0 -26
- package/frontend/src/features/database/services/database.service.ts +55 -0
- package/frontend/src/features/database/services/table.service.ts +0 -6
- package/frontend/src/features/functions/{page → pages}/FunctionsPage.tsx +21 -44
- package/frontend/src/features/functions/{page → pages}/SecretsPage.tsx +11 -9
- package/frontend/src/features/logs/hooks/useMcpUsage.ts +13 -66
- package/frontend/src/features/realtime/components/ChannelRow.tsx +83 -0
- package/frontend/src/features/realtime/components/EditChannelModal.tsx +246 -0
- package/frontend/src/features/realtime/components/MessageRow.tsx +85 -0
- package/frontend/src/features/realtime/components/RealtimeEmptyState.tsx +30 -0
- package/frontend/src/features/realtime/hooks/useRealtime.ts +218 -0
- package/frontend/src/features/realtime/index.ts +11 -0
- package/frontend/src/features/realtime/pages/RealtimeChannelsPage.tsx +172 -0
- package/frontend/src/features/realtime/pages/RealtimeMessagesPage.tsx +211 -0
- package/frontend/src/features/realtime/pages/RealtimePermissionsPage.tsx +191 -0
- package/frontend/src/features/realtime/services/realtime.service.ts +107 -0
- package/frontend/src/features/storage/{page → pages}/StoragePage.tsx +1 -29
- package/frontend/src/features/visualizer/components/SchemaVisualizer.tsx +3 -3
- package/frontend/src/features/visualizer/{page → pages}/VisualizerPage.tsx +1 -35
- package/frontend/src/lib/contexts/SocketContext.tsx +119 -75
- package/frontend/src/lib/routing/AppRoutes.tsx +35 -20
- package/frontend/src/lib/utils/cloudMessaging.ts +1 -1
- package/frontend/src/lib/utils/menuItems.ts +24 -0
- package/frontend/src/lib/utils/utils.ts +14 -1
- package/frontend/tsconfig.json +25 -25
- package/frontend/tsconfig.node.json +9 -9
- package/functions/deno.json +24 -24
- package/functions/server.ts +315 -315
- package/i18n/README.ar.md +130 -130
- package/i18n/README.de.md +130 -130
- package/i18n/README.es.md +154 -154
- package/i18n/README.fr.md +134 -134
- package/i18n/README.hi.md +129 -129
- package/i18n/README.ja.md +174 -174
- package/i18n/README.ko.md +136 -136
- package/i18n/README.pt-BR.md +131 -131
- package/i18n/README.ru.md +129 -129
- package/i18n/README.zh-CN.md +133 -133
- package/openapi/ai.yaml +715 -715
- package/openapi/auth.yaml +1244 -1244
- package/openapi/email.yaml +158 -0
- package/openapi/functions.yaml +475 -475
- package/openapi/health.yaml +29 -29
- package/openapi/logs.yaml +223 -223
- package/openapi/metadata.yaml +177 -177
- package/openapi/realtime.yaml +699 -0
- package/openapi/records.yaml +381 -381
- package/openapi/secrets.yaml +370 -370
- package/openapi/storage.yaml +875 -875
- package/openapi/tables.yaml +463 -463
- package/package.json +97 -97
- package/shared-schemas/package.json +31 -31
- package/shared-schemas/src/ai.schema.ts +63 -59
- package/shared-schemas/src/auth-api.schema.ts +352 -339
- package/shared-schemas/src/auth.schema.ts +1 -1
- package/shared-schemas/src/database-api.schema.ts +32 -1
- package/shared-schemas/src/database.schema.ts +39 -0
- package/shared-schemas/src/docs.schema.ts +26 -0
- package/shared-schemas/src/email-api.schema.ts +30 -0
- package/shared-schemas/src/index.ts +4 -0
- package/shared-schemas/src/metadata.schema.ts +9 -0
- package/shared-schemas/src/realtime-api.schema.ts +111 -0
- package/shared-schemas/src/realtime.schema.ts +143 -0
- package/shared-schemas/tsconfig.json +21 -21
- package/tsconfig.json +7 -7
- package/zeabur/README.md +13 -13
- package/zeabur/template.yml +1032 -1032
- package/.cursor/rules/cursor-rules.mdc +0 -94
- package/frontend/src/features/database/hooks/useFullMetadata.ts +0 -18
- package/test-gemini.sh +0 -35
- package/test-usage-admin.sh +0 -57
- package/test-usage.sh +0 -50
- /package/frontend/src/features/ai/{page → pages}/AIPage.tsx +0 -0
- /package/frontend/src/features/auth/{page → pages}/AuthMethodsPage.tsx +0 -0
- /package/frontend/src/features/auth/{page → pages}/ConfigurationPage.tsx +0 -0
- /package/frontend/src/features/dashboard/{page → pages}/DashboardPage.tsx +0 -0
- /package/frontend/src/features/database/{page → pages}/SQLEditorPage.tsx +0 -0
- /package/frontend/src/features/database/{page → pages}/TemplatesPage.tsx +0 -0
- /package/frontend/src/features/login/{page → pages}/CloudLoginPage.tsx +0 -0
- /package/frontend/src/features/login/{page → pages}/LoginPage.tsx +0 -0
- /package/frontend/src/features/logs/{page → pages}/AuditsPage.tsx +0 -0
- /package/frontend/src/features/logs/{page → pages}/LogsPage.tsx +0 -0
- /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
|
-
[](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
|
+
[](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.
|
|
14
|
-
"@insforge/shared-schemas": "^1.1.23",
|
|
15
|
-
"react": "^19.2.
|
|
16
|
-
"react-dom": "^19.2.
|
|
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
|
+
}
|