@digilogiclabs/create-saas-app 2.10.0 → 2.12.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/CHANGELOG.md +6 -0
- package/README.md +153 -113
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/commands/create.d.ts.map +1 -1
- package/dist/cli/commands/create.js +2 -6
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/generators/template-generator.d.ts.map +1 -1
- package/dist/generators/template-generator.js +15 -8
- package/dist/generators/template-generator.js.map +1 -1
- package/dist/templates/shared/admin/web/src/components/admin-nav.tsx +3 -3
- package/dist/templates/shared/auth/supabase/web/src/lib/auth-session.ts +36 -16
- package/dist/templates/shared/auth/supabase/web/src/middleware.ts +6 -0
- package/dist/templates/shared/cookie-consent/web/components/cookie-consent.tsx +5 -5
- package/dist/templates/shared/design/web/src/components/ui/button.tsx +56 -0
- package/dist/templates/shared/email/web/src/lib/email/client.ts +1 -1
- package/dist/templates/shared/error-pages/web/src/app/error.tsx +13 -11
- package/dist/templates/shared/error-pages/web/src/app/global-error.tsx +2 -0
- package/dist/templates/shared/error-pages/web/src/app/not-found.tsx +6 -6
- package/dist/templates/shared/legal/web/src/app/(legal)/privacy/page.tsx +4 -4
- package/dist/templates/shared/legal/web/src/app/(legal)/terms/page.tsx +4 -4
- package/dist/templates/shared/loading/web/components/skeleton.tsx +4 -4
- package/dist/templates/shared/mock/web/.env.local +55 -0
- package/dist/templates/shared/mock/web/src/components/mock-auth-provider.tsx +72 -0
- package/dist/templates/shared/mock/web/src/components/mock-banner.tsx +29 -0
- package/dist/templates/shared/mock/web/src/lib/mock.ts +147 -0
- package/dist/templates/shared/payments/web/src/app/api/webhooks/stripe/route.ts +10 -4
- package/dist/templates/shared/redis/web/src/lib/redis.ts +1 -1
- package/dist/templates/web/ai-platform/template/src/app/api/auth/route.ts +57 -0
- package/dist/templates/web/ai-platform/template/src/app/login/page.tsx +112 -0
- package/dist/templates/web/ai-platform/template/src/app/models/page.tsx +186 -0
- package/dist/templates/web/ai-platform/template/src/app/playground/page.tsx +251 -0
- package/dist/templates/web/ai-platform/template/src/app/settings/page.tsx +190 -0
- package/dist/templates/web/ai-platform/template/src/app/signup/page.tsx +133 -0
- package/dist/templates/web/ai-platform/template/src/lib/auth-session.ts +52 -0
- package/dist/templates/web/base/template/eslint.config.mjs +14 -0
- package/dist/templates/web/base/template/src/app/auth/callback/route.ts +1 -1
- package/dist/templates/web/base/template/src/app/checkout/page.tsx +76 -103
- package/dist/templates/web/base/template/src/app/dashboard/page.tsx +145 -329
- package/dist/templates/web/base/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/base/template/src/app/login/page.tsx +116 -66
- package/dist/templates/web/base/template/src/app/page.tsx +97 -193
- package/dist/templates/web/base/template/src/app/settings/page.tsx +154 -0
- package/dist/templates/web/base/template/src/app/signup/page.tsx +117 -66
- package/dist/templates/web/base/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/base/template/src/components/shared/header.tsx +229 -63
- package/dist/templates/web/iot-dashboard/template/src/app/alerts/page.tsx +157 -0
- package/dist/templates/web/iot-dashboard/template/src/app/api/auth/route.ts +57 -0
- package/dist/templates/web/iot-dashboard/template/src/app/devices/[id]/page.tsx +204 -0
- package/dist/templates/web/iot-dashboard/template/src/app/devices/new/page.tsx +139 -0
- package/dist/templates/web/iot-dashboard/template/src/app/devices/page.tsx +171 -0
- package/dist/templates/web/iot-dashboard/template/src/app/login/page.tsx +112 -0
- package/dist/templates/web/iot-dashboard/template/src/app/settings/page.tsx +186 -0
- package/dist/templates/web/iot-dashboard/template/src/app/signup/page.tsx +133 -0
- package/dist/templates/web/iot-dashboard/template/src/lib/auth-session.ts +52 -0
- package/dist/templates/web/marketplace/template/src/app/api/auth/route.ts +57 -0
- package/dist/templates/web/marketplace/template/src/app/login/page.tsx +112 -0
- package/dist/templates/web/marketplace/template/src/app/orders/page.tsx +160 -0
- package/dist/templates/web/marketplace/template/src/app/products/[id]/page.tsx +218 -0
- package/dist/templates/web/marketplace/template/src/app/settings/page.tsx +150 -0
- package/dist/templates/web/marketplace/template/src/app/signup/page.tsx +133 -0
- package/dist/templates/web/marketplace/template/src/lib/auth-session.ts +52 -0
- package/dist/templates/web/micro-saas/template/src/app/api/auth/route.ts +57 -0
- package/dist/templates/web/micro-saas/template/src/app/login/page.tsx +14 -3
- package/dist/templates/web/micro-saas/template/src/app/signup/page.tsx +15 -4
- package/dist/templates/web/micro-saas/template/src/lib/auth-session.ts +52 -0
- package/dist/templates/web/ui-auth/template/eslint.config.mjs +14 -0
- package/dist/templates/web/ui-auth/template/src/app/checkout/page.tsx +3 -3
- package/dist/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +81 -91
- package/dist/templates/web/ui-auth/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth/template/src/app/login/page.tsx +22 -45
- package/dist/templates/web/ui-auth/template/src/app/page.tsx +106 -306
- package/dist/templates/web/ui-auth/template/src/app/setup/page.tsx +387 -402
- package/dist/templates/web/ui-auth/template/src/app/signup/page.tsx +24 -47
- package/dist/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth/template/src/components/shared/header.tsx +229 -94
- package/dist/templates/web/ui-auth-ai/template/src/app/layout.tsx +38 -45
- package/dist/templates/web/ui-auth-ai/template/src/app/login/page.tsx +86 -0
- package/dist/templates/web/ui-auth-ai/template/src/app/page.tsx +107 -193
- package/dist/templates/web/ui-auth-ai/template/src/app/signup/page.tsx +105 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/ai/audio-generator.tsx +144 -140
- package/dist/templates/web/ui-auth-ai/template/src/components/ai/video-generator.tsx +156 -157
- package/dist/templates/web/ui-auth-ai/template/src/components/auth/login-form.tsx +7 -3
- package/dist/templates/web/ui-auth-ai/template/src/components/providers/app-providers.tsx +25 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/shared/footer.tsx +36 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/shared/header.tsx +228 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/button.tsx +5 -5
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/input.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/select.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/textarea.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/theme-toggle.tsx +34 -0
- package/dist/templates/web/ui-auth-ai/template/src/lib/supabase.ts +6 -4
- package/dist/templates/web/ui-auth-ai/template/src/providers/auth-provider.tsx +7 -5
- package/dist/templates/web/ui-auth-payments/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +104 -296
- package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +70 -81
- package/dist/templates/web/ui-auth-payments/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth-payments/template/src/app/login/loading.tsx +9 -9
- package/dist/templates/web/ui-auth-payments/template/src/app/login/page.tsx +4 -104
- package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +69 -337
- package/dist/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +55 -68
- package/dist/templates/web/ui-auth-payments/template/src/app/signup/loading.tsx +13 -13
- package/dist/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +4 -123
- package/dist/templates/web/ui-auth-payments/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +49 -103
- package/dist/templates/web/ui-auth-payments/template/src/components/client/newsletter-signup.tsx +4 -4
- package/dist/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +60 -140
- package/dist/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +25 -28
- package/dist/templates/web/ui-auth-payments/template/src/components/shared/header.tsx +229 -230
- package/dist/templates/web/ui-auth-payments/template/src/lib/actions/auth.ts +245 -245
- package/dist/templates/web/ui-auth-payments/template/src/lib/actions/index.ts +339 -339
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/ai/page.tsx +305 -309
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +62 -312
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +68 -83
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +20 -20
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +140 -394
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +28 -27
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +51 -66
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +50 -79
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +58 -111
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +229 -252
- package/dist/templates/web/ui-auth-payments-ai/template/src/lib/actions/auth.ts +245 -245
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +122 -385
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/setup/page.tsx +340 -344
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +49 -103
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +60 -140
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +229 -252
- package/dist/templates/web/ui-auth-payments-audio/template/src/lib/actions/auth.ts +3 -3
- package/dist/templates/web/ui-auth-payments-video/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments-video/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-video/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +9 -109
- package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +132 -392
- package/dist/templates/web/ui-auth-payments-video/template/src/app/setup/page.tsx +346 -350
- package/dist/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +9 -128
- package/dist/templates/web/ui-auth-payments-video/template/src/components/client/login-form.tsx +90 -0
- package/dist/templates/web/ui-auth-payments-video/template/src/components/client/signup-form.tsx +105 -0
- package/dist/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-video/template/src/components/shared/header.tsx +229 -246
- package/dist/templates/web/ui-only/template/eslint.config.mjs +14 -0
- package/dist/templates/web/ui-only/template/src/app/checkout/page.tsx +2 -2
- package/dist/templates/web/ui-only/template/src/app/login/page.tsx +69 -63
- package/dist/templates/web/ui-only/template/src/app/page.tsx +69 -91
- package/dist/templates/web/ui-only/template/src/app/signup/page.tsx +94 -79
- package/dist/templates/web/ui-only/template/src/components/providers/app-providers.tsx +1 -6
- package/dist/templates/web/ui-only/template/src/components/shared/header.tsx +90 -53
- package/dist/templates/web/ui-package-test/template/package.json +19 -23
- package/dist/templates/web/ui-package-test/template/postcss.config.mjs +8 -0
- package/dist/templates/web/ui-package-test/template/src/app/globals.css +88 -0
- package/dist/templates/web/ui-package-test/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/ui-package-test/template/src/app/page.tsx +46 -106
- package/package.json +1 -1
- package/src/templates/shared/admin/web/src/components/admin-nav.tsx +3 -3
- package/src/templates/shared/auth/supabase/web/src/lib/auth-session.ts +36 -16
- package/src/templates/shared/auth/supabase/web/src/middleware.ts +6 -0
- package/src/templates/shared/cookie-consent/web/components/cookie-consent.tsx +5 -5
- package/src/templates/shared/design/web/src/components/ui/button.tsx +56 -0
- package/src/templates/shared/email/web/src/lib/email/client.ts +1 -1
- package/src/templates/shared/error-pages/web/src/app/error.tsx +13 -11
- package/src/templates/shared/error-pages/web/src/app/global-error.tsx +2 -0
- package/src/templates/shared/error-pages/web/src/app/not-found.tsx +6 -6
- package/src/templates/shared/legal/web/src/app/(legal)/privacy/page.tsx +4 -4
- package/src/templates/shared/legal/web/src/app/(legal)/terms/page.tsx +4 -4
- package/src/templates/shared/loading/web/components/skeleton.tsx +4 -4
- package/src/templates/shared/mock/web/.env.local +55 -0
- package/src/templates/shared/mock/web/src/components/mock-auth-provider.tsx +72 -0
- package/src/templates/shared/mock/web/src/components/mock-banner.tsx +29 -0
- package/src/templates/shared/mock/web/src/lib/mock.ts +147 -0
- package/src/templates/shared/payments/web/src/app/api/webhooks/stripe/route.ts +10 -4
- package/src/templates/shared/redis/web/src/lib/redis.ts +1 -1
- package/src/templates/web/ai-platform/template/src/app/api/auth/route.ts +57 -0
- package/src/templates/web/ai-platform/template/src/app/login/page.tsx +112 -0
- package/src/templates/web/ai-platform/template/src/app/models/page.tsx +186 -0
- package/src/templates/web/ai-platform/template/src/app/playground/page.tsx +251 -0
- package/src/templates/web/ai-platform/template/src/app/settings/page.tsx +190 -0
- package/src/templates/web/ai-platform/template/src/app/signup/page.tsx +133 -0
- package/src/templates/web/ai-platform/template/src/lib/auth-session.ts +52 -0
- package/src/templates/web/base/template/eslint.config.mjs +14 -0
- package/src/templates/web/base/template/src/app/auth/callback/route.ts +1 -1
- package/src/templates/web/base/template/src/app/checkout/page.tsx +76 -103
- package/src/templates/web/base/template/src/app/dashboard/page.tsx +145 -329
- package/src/templates/web/base/template/src/app/layout.tsx +40 -38
- package/src/templates/web/base/template/src/app/login/page.tsx +116 -66
- package/src/templates/web/base/template/src/app/page.tsx +97 -193
- package/src/templates/web/base/template/src/app/settings/page.tsx +154 -0
- package/src/templates/web/base/template/src/app/signup/page.tsx +117 -66
- package/src/templates/web/base/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/base/template/src/components/shared/header.tsx +229 -63
- package/src/templates/web/iot-dashboard/template/src/app/alerts/page.tsx +157 -0
- package/src/templates/web/iot-dashboard/template/src/app/api/auth/route.ts +57 -0
- package/src/templates/web/iot-dashboard/template/src/app/devices/[id]/page.tsx +204 -0
- package/src/templates/web/iot-dashboard/template/src/app/devices/new/page.tsx +139 -0
- package/src/templates/web/iot-dashboard/template/src/app/devices/page.tsx +171 -0
- package/src/templates/web/iot-dashboard/template/src/app/login/page.tsx +112 -0
- package/src/templates/web/iot-dashboard/template/src/app/settings/page.tsx +186 -0
- package/src/templates/web/iot-dashboard/template/src/app/signup/page.tsx +133 -0
- package/src/templates/web/iot-dashboard/template/src/lib/auth-session.ts +52 -0
- package/src/templates/web/marketplace/template/src/app/api/auth/route.ts +57 -0
- package/src/templates/web/marketplace/template/src/app/login/page.tsx +112 -0
- package/src/templates/web/marketplace/template/src/app/orders/page.tsx +160 -0
- package/src/templates/web/marketplace/template/src/app/products/[id]/page.tsx +218 -0
- package/src/templates/web/marketplace/template/src/app/settings/page.tsx +150 -0
- package/src/templates/web/marketplace/template/src/app/signup/page.tsx +133 -0
- package/src/templates/web/marketplace/template/src/lib/auth-session.ts +52 -0
- package/src/templates/web/micro-saas/template/src/app/api/auth/route.ts +57 -0
- package/src/templates/web/micro-saas/template/src/app/login/page.tsx +14 -3
- package/src/templates/web/micro-saas/template/src/app/signup/page.tsx +15 -4
- package/src/templates/web/micro-saas/template/src/lib/auth-session.ts +52 -0
- package/src/templates/web/ui-auth/template/eslint.config.mjs +14 -0
- package/src/templates/web/ui-auth/template/src/app/checkout/page.tsx +3 -3
- package/src/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +81 -91
- package/src/templates/web/ui-auth/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth/template/src/app/login/page.tsx +22 -45
- package/src/templates/web/ui-auth/template/src/app/page.tsx +106 -306
- package/src/templates/web/ui-auth/template/src/app/setup/page.tsx +387 -402
- package/src/templates/web/ui-auth/template/src/app/signup/page.tsx +24 -47
- package/src/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth/template/src/components/shared/header.tsx +229 -94
- package/src/templates/web/ui-auth-ai/template/src/app/layout.tsx +38 -45
- package/src/templates/web/ui-auth-ai/template/src/app/login/page.tsx +86 -0
- package/src/templates/web/ui-auth-ai/template/src/app/page.tsx +107 -193
- package/src/templates/web/ui-auth-ai/template/src/app/signup/page.tsx +105 -0
- package/src/templates/web/ui-auth-ai/template/src/components/ai/audio-generator.tsx +144 -140
- package/src/templates/web/ui-auth-ai/template/src/components/ai/video-generator.tsx +156 -157
- package/src/templates/web/ui-auth-ai/template/src/components/auth/login-form.tsx +7 -3
- package/src/templates/web/ui-auth-ai/template/src/components/providers/app-providers.tsx +25 -0
- package/src/templates/web/ui-auth-ai/template/src/components/shared/footer.tsx +36 -0
- package/src/templates/web/ui-auth-ai/template/src/components/shared/header.tsx +228 -0
- package/src/templates/web/ui-auth-ai/template/src/components/ui/button.tsx +5 -5
- package/src/templates/web/ui-auth-ai/template/src/components/ui/input.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/select.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/textarea.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/theme-toggle.tsx +34 -0
- package/src/templates/web/ui-auth-ai/template/src/lib/supabase.ts +6 -4
- package/src/templates/web/ui-auth-ai/template/src/providers/auth-provider.tsx +7 -5
- package/src/templates/web/ui-auth-payments/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +104 -296
- package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +70 -81
- package/src/templates/web/ui-auth-payments/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth-payments/template/src/app/login/loading.tsx +9 -9
- package/src/templates/web/ui-auth-payments/template/src/app/login/page.tsx +4 -104
- package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +69 -337
- package/src/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +55 -68
- package/src/templates/web/ui-auth-payments/template/src/app/signup/loading.tsx +13 -13
- package/src/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +4 -123
- package/src/templates/web/ui-auth-payments/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +49 -103
- package/src/templates/web/ui-auth-payments/template/src/components/client/newsletter-signup.tsx +4 -4
- package/src/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +60 -140
- package/src/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +25 -28
- package/src/templates/web/ui-auth-payments/template/src/components/shared/header.tsx +229 -230
- package/src/templates/web/ui-auth-payments/template/src/lib/actions/auth.ts +245 -245
- package/src/templates/web/ui-auth-payments/template/src/lib/actions/index.ts +339 -339
- package/src/templates/web/ui-auth-payments-ai/template/src/app/ai/page.tsx +305 -309
- package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +62 -312
- package/src/templates/web/ui-auth-payments-ai/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +68 -83
- package/src/templates/web/ui-auth-payments-ai/template/src/app/layout.tsx +40 -38
- package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +20 -20
- package/src/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +140 -394
- package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +28 -27
- package/src/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +51 -66
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +50 -79
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +58 -111
- package/src/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +229 -252
- package/src/templates/web/ui-auth-payments-ai/template/src/lib/actions/auth.ts +245 -245
- package/src/templates/web/ui-auth-payments-audio/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments-audio/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments-audio/template/src/app/layout.tsx +40 -38
- package/src/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +122 -385
- package/src/templates/web/ui-auth-payments-audio/template/src/app/setup/page.tsx +340 -344
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +49 -103
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +60 -140
- package/src/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +229 -252
- package/src/templates/web/ui-auth-payments-audio/template/src/lib/actions/auth.ts +3 -3
- package/src/templates/web/ui-auth-payments-video/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments-video/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-video/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +9 -109
- package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +132 -392
- package/src/templates/web/ui-auth-payments-video/template/src/app/setup/page.tsx +346 -350
- package/src/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +9 -128
- package/src/templates/web/ui-auth-payments-video/template/src/components/client/login-form.tsx +90 -0
- package/src/templates/web/ui-auth-payments-video/template/src/components/client/signup-form.tsx +105 -0
- package/src/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-video/template/src/components/shared/header.tsx +229 -246
- package/src/templates/web/ui-only/template/eslint.config.mjs +14 -0
- package/src/templates/web/ui-only/template/src/app/checkout/page.tsx +2 -2
- package/src/templates/web/ui-only/template/src/app/login/page.tsx +69 -63
- package/src/templates/web/ui-only/template/src/app/page.tsx +69 -91
- package/src/templates/web/ui-only/template/src/app/signup/page.tsx +94 -79
- package/src/templates/web/ui-only/template/src/components/providers/app-providers.tsx +1 -6
- package/src/templates/web/ui-only/template/src/components/shared/header.tsx +90 -53
- package/src/templates/web/ui-package-test/template/package.json +19 -23
- package/src/templates/web/ui-package-test/template/postcss.config.mjs +8 -0
- package/src/templates/web/ui-package-test/template/src/app/globals.css +88 -0
- package/src/templates/web/ui-package-test/template/src/app/layout.tsx +27 -0
- package/src/templates/web/ui-package-test/template/src/app/page.tsx +46 -106
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/README.md +0 -655
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app/(tabs)/ai.tsx +0 -683
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +0 -124
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app.json +0 -74
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +0 -25
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/docs/MOBILE-SETUP.md +0 -787
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +0 -25
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +0 -3
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -346
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +0 -37
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -180
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +0 -11
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +0 -122
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -599
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +0 -32
- package/dist/templates/web/base/template/.eslintrc.js +0 -8
- package/dist/templates/web/base/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/base/template/src/test/setup.ts +0 -74
- package/dist/templates/web/base/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth/template/.eslintrc.js +0 -8
- package/dist/templates/web/ui-auth/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-ai/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-ai/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-ai-rag/template/README.md +0 -434
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/KnowledgeManager.tsx +0 -642
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGAnalytics.tsx +0 -466
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGChatInterface.tsx +0 -393
- package/dist/templates/web/ui-auth-payments-ai-rag/template/docs/GETTING-STARTED.md +0 -457
- package/dist/templates/web/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -478
- package/dist/templates/web/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -250
- package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +0 -73
- package/dist/templates/web/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -622
- package/dist/templates/web/ui-auth-payments-ai-rag/template/src/app/ai/page.tsx +0 -396
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-audio/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-audio/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-video/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-video/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-video/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-only/template/.eslintrc.js +0 -8
- package/dist/templates/web/ui-only/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-only/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-only/template/vitest.config.ts +0 -17
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/README.md +0 -655
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app/(tabs)/ai.tsx +0 -683
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +0 -124
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app.json +0 -74
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +0 -25
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/docs/MOBILE-SETUP.md +0 -787
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +0 -25
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +0 -3
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -346
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +0 -37
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -180
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +0 -11
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +0 -122
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -599
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +0 -32
- package/src/templates/web/base/template/.eslintrc.js +0 -8
- package/src/templates/web/base/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/base/template/src/test/setup.ts +0 -74
- package/src/templates/web/base/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth/template/.eslintrc.js +0 -8
- package/src/templates/web/ui-auth/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-ai/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-ai/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-ai/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-ai-rag/template/README.md +0 -434
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/KnowledgeManager.tsx +0 -642
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGAnalytics.tsx +0 -466
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGChatInterface.tsx +0 -393
- package/src/templates/web/ui-auth-payments-ai-rag/template/docs/GETTING-STARTED.md +0 -457
- package/src/templates/web/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -478
- package/src/templates/web/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -250
- package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +0 -73
- package/src/templates/web/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -622
- package/src/templates/web/ui-auth-payments-ai-rag/template/src/app/ai/page.tsx +0 -396
- package/src/templates/web/ui-auth-payments-audio/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-audio/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-audio/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-video/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-video/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-video/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-only/template/.eslintrc.js +0 -8
- package/src/templates/web/ui-only/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-only/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-only/template/vitest.config.ts +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @digilogiclabs/create-saas-app
|
|
2
2
|
|
|
3
|
+
## 2.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Standardize all tier templates with consistent header, mock providers, and login/signup pages. Fix ui-auth-ai template missing pages and components.
|
|
8
|
+
|
|
3
9
|
## 2.6.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -15,11 +15,17 @@ Get started instantly with our most popular, production-ready templates:
|
|
|
15
15
|
# 💳 Complete SaaS Foundation (Payments + Auth)
|
|
16
16
|
npx @digilogiclabs/create-saas-app create web ui-auth-payments my-saas-app
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
npx @digilogiclabs/create-saas-app create web
|
|
18
|
+
# 🚀 Micro SaaS Starter (Landing + Auth + Dashboard)
|
|
19
|
+
npx @digilogiclabs/create-saas-app create web micro-saas my-micro-saas
|
|
20
|
+
|
|
21
|
+
# 🛒 Digital Marketplace (Products, Cart, Orders)
|
|
22
|
+
npx @digilogiclabs/create-saas-app create web marketplace my-marketplace
|
|
20
23
|
|
|
21
|
-
#
|
|
22
|
-
npx @digilogiclabs/create-saas-app create web
|
|
24
|
+
# 🤖 AI-Powered SaaS Platform (Chat, Models, Playground)
|
|
25
|
+
npx @digilogiclabs/create-saas-app create web ai-platform my-ai-app --with-ai=all
|
|
26
|
+
|
|
27
|
+
# 📡 IoT Dashboard (Devices, Telemetry, Alerts)
|
|
28
|
+
npx @digilogiclabs/create-saas-app create web iot-dashboard my-iot-app
|
|
23
29
|
|
|
24
30
|
# 🎵 Audio Streaming SaaS (Music/Podcast Platform)
|
|
25
31
|
npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform
|
|
@@ -29,9 +35,6 @@ npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studi
|
|
|
29
35
|
|
|
30
36
|
# 📱 Mobile AI SaaS (React Native + Expo)
|
|
31
37
|
npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai mobile-ai-app --with-ai=all
|
|
32
|
-
|
|
33
|
-
# 📱 Mobile RAG Knowledge App
|
|
34
|
-
npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai-rag knowledge-mobile --with-ai=rag
|
|
35
38
|
```
|
|
36
39
|
|
|
37
40
|
## 🚀 Complete Template Reference
|
|
@@ -52,16 +55,23 @@ npx @digilogiclabs/create-saas-app create --help
|
|
|
52
55
|
|
|
53
56
|
### **📋 All Available Templates (16 Total)**
|
|
54
57
|
|
|
55
|
-
#### **🌐 Web Templates (
|
|
58
|
+
#### **🌐 Web Templates (13)**
|
|
56
59
|
|
|
57
|
-
|
|
60
|
+
**🏗️ Vertical Templates (Full App Flows)**
|
|
61
|
+
| Template | Description | Pages | Command |
|
|
62
|
+
|----------|-------------|-------|---------|
|
|
63
|
+
| `micro-saas` | **Micro SaaS Starter** | Landing, Login, Signup, Dashboard | `npx @digilogiclabs/create-saas-app create web micro-saas my-saas` |
|
|
64
|
+
| `marketplace` | **Digital Marketplace** | Landing, Auth, Products, Cart, Orders, Dashboard, Settings | `npx @digilogiclabs/create-saas-app create web marketplace my-shop` |
|
|
65
|
+
| `ai-platform` | **AI Platform** | Landing, Auth, Chat, Models, Playground, Dashboard, Settings | `npx @digilogiclabs/create-saas-app create web ai-platform my-ai --with-ai=all` |
|
|
66
|
+
| `iot-dashboard` | **IoT Dashboard** | Landing, Auth, Devices, Device Detail, Alerts, Dashboard, Settings | `npx @digilogiclabs/create-saas-app create web iot-dashboard my-iot` |
|
|
67
|
+
|
|
68
|
+
**💎 Tier Templates (Composable Foundation)**
|
|
58
69
|
| Template | Description | Features | Command |
|
|
59
70
|
|----------|-------------|----------|---------|
|
|
60
71
|
| `ui-auth-payments` | **Complete SaaS Foundation** | Auth + Payments + Dashboard | `npx @digilogiclabs/create-saas-app create web ui-auth-payments my-saas` |
|
|
61
|
-
| `ui-auth-payments-ai` | **AI-Powered SaaS
|
|
62
|
-
| `ui-auth-payments-
|
|
63
|
-
| `ui-auth-payments-
|
|
64
|
-
| `ui-auth-payments-video` | **🎬 Video Streaming SaaS** | Video Platform & Studio | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio` |
|
|
72
|
+
| `ui-auth-payments-ai` | **AI-Powered SaaS** | Full AI Suite (Text, Audio, Video) | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai ai-app --with-ai=all` |
|
|
73
|
+
| `ui-auth-payments-audio` | **Audio Streaming SaaS** | Music/Podcast Platform | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform` |
|
|
74
|
+
| `ui-auth-payments-video` | **Video Streaming SaaS** | Video Platform & Studio | `npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio` |
|
|
65
75
|
|
|
66
76
|
**🚀 Starter Templates**
|
|
67
77
|
| Template | Description | Features | Command |
|
|
@@ -72,19 +82,13 @@ npx @digilogiclabs/create-saas-app create --help
|
|
|
72
82
|
| `ui-auth-ai` | Text & chat AI platform | Basic AI features | `npx @digilogiclabs/create-saas-app create web ui-auth-ai text-ai-app --with-ai=text` |
|
|
73
83
|
| `ui-package-test` | Component testing env | Development testing | `npx @digilogiclabs/create-saas-app create web ui-package-test component-test` |
|
|
74
84
|
|
|
75
|
-
#### **📱 Mobile Templates (
|
|
85
|
+
#### **📱 Mobile Templates (3)**
|
|
76
86
|
|
|
77
|
-
|
|
78
|
-
|
|
|
79
|
-
|
|
80
|
-
| `ui-auth-payments`
|
|
81
|
-
| `ui-auth-payments-ai` |
|
|
82
|
-
| `ui-auth-payments-ai-rag` | **📱 Mobile Knowledge App** | Offline RAG + Document Scanning | `npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai-rag knowledge-mobile --with-ai=rag` |
|
|
83
|
-
|
|
84
|
-
**🚀 Mobile Starters**
|
|
85
|
-
| Template | Description | Features | Command |
|
|
86
|
-
|----------|-------------|----------|---------|
|
|
87
|
-
| `base` | React Native + Expo starter | Minimal mobile setup | `npx @digilogiclabs/create-saas-app create mobile base mobile-app` |
|
|
87
|
+
| Template | Description | Features | Command |
|
|
88
|
+
| --------------------- | --------------------------- | --------------------------- | -------------------------------------------------------------------------------------------------- |
|
|
89
|
+
| `base` | React Native + Expo starter | Minimal mobile setup | `npx @digilogiclabs/create-saas-app create mobile base mobile-app` |
|
|
90
|
+
| `ui-auth-payments` | **Full Mobile SaaS** | Auth + Payments + Native UI | `npx @digilogiclabs/create-saas-app create mobile ui-auth-payments mobile-saas` |
|
|
91
|
+
| `ui-auth-payments-ai` | **Mobile AI SaaS** | Native AI with Voice/Camera | `npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai ai-mobile-app --with-ai=all` |
|
|
88
92
|
|
|
89
93
|
### **🤖 AI Capabilities Reference**
|
|
90
94
|
|
|
@@ -94,7 +98,6 @@ npx @digilogiclabs/create-saas-app create --help
|
|
|
94
98
|
| `text` | Text generation & chat | OpenAI GPT, Claude, Gemini | Content creation, chatbots |
|
|
95
99
|
| `audio` | Audio processing & generation | Speech-to-text, text-to-speech, music | Podcasts, music platforms |
|
|
96
100
|
| `video` | Video processing & generation | Video editing, generation, streaming | Video platforms, content creation |
|
|
97
|
-
| `rag` | **🧠 RAG Knowledge System v4.0.0** | Vector search, document processing, Q&A | Knowledge bases, AI assistants |
|
|
98
101
|
| `all` | Complete AI suite | All above capabilities | Full AI platforms |
|
|
99
102
|
|
|
100
103
|
**Available AI Providers (`--ai-provider`)**
|
|
@@ -161,14 +164,12 @@ npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai content-ai \
|
|
|
161
164
|
--theme-color=blue
|
|
162
165
|
```
|
|
163
166
|
|
|
164
|
-
|
|
167
|
+
**📡 IoT Dashboard**
|
|
165
168
|
|
|
166
169
|
```bash
|
|
167
|
-
#
|
|
168
|
-
npx @digilogiclabs/create-saas-app create web
|
|
169
|
-
--
|
|
170
|
-
--ai-provider=anthropic \
|
|
171
|
-
--theme=startup \
|
|
170
|
+
# Real-time IoT monitoring platform
|
|
171
|
+
npx @digilogiclabs/create-saas-app create web iot-dashboard iot-monitor \
|
|
172
|
+
--theme=default \
|
|
172
173
|
--theme-color=green
|
|
173
174
|
```
|
|
174
175
|
|
|
@@ -230,32 +231,26 @@ npx @digilogiclabs/create-saas-app create web ui-auth-payments prototype \
|
|
|
230
231
|
- **Mobile Only**: Use `mobile` platform
|
|
231
232
|
- **Universal**: Use `both` platform (web + mobile)
|
|
232
233
|
|
|
233
|
-
## 🎉 What's New in
|
|
234
|
+
## 🎉 What's New in v2.10.0
|
|
234
235
|
|
|
235
|
-
###
|
|
236
|
+
### 🏗️ **Complete Vertical Templates**
|
|
236
237
|
|
|
237
|
-
- **
|
|
238
|
-
- **
|
|
239
|
-
- **
|
|
240
|
-
- **Enhanced TypeScript** - Complete type definitions and IntelliSense support
|
|
238
|
+
- **4 vertical templates** with full app flows: Micro SaaS, Marketplace, AI Platform, IoT Dashboard
|
|
239
|
+
- **Working auth out of the box** - Demo cookie-based session (swap for Keycloak/Supabase in production)
|
|
240
|
+
- **30+ pages** across verticals: landing, login, signup, dashboard, settings, and domain-specific pages
|
|
241
241
|
|
|
242
|
-
### 🎨 **
|
|
242
|
+
### 🎨 **Design System Compliance**
|
|
243
243
|
|
|
244
|
-
- **
|
|
245
|
-
- **
|
|
246
|
-
- **
|
|
247
|
-
- **
|
|
244
|
+
- **Tailwind v4 migration** - All templates use `@theme` block with CSS custom properties
|
|
245
|
+
- **Zero hardcoded structural colors** - Everything uses semantic tokens (`bg-background`, `text-foreground`, etc.)
|
|
246
|
+
- **Brand-specific tokens** - Purple (AI), Emerald (IoT), Blue (Marketplace/SaaS)
|
|
247
|
+
- **Skip-to-content** accessibility links in all 12 layouts
|
|
248
248
|
|
|
249
|
-
###
|
|
249
|
+
### 📋 **Design Principles**
|
|
250
250
|
|
|
251
|
-
- **
|
|
252
|
-
- **
|
|
253
|
-
- **
|
|
254
|
-
|
|
255
|
-
### 💳 **Improved Payments**
|
|
256
|
-
|
|
257
|
-
- **Enhanced Type System** - Better TypeScript definitions and error handling
|
|
258
|
-
- **Future-Ready Foundation** - Prepared for PayPal, Apple Pay, and analytics features
|
|
251
|
+
- **Unified DESIGN_PRINCIPLES.md** - 22-section source of truth for all apps and templates
|
|
252
|
+
- **Search/Filter/Sort standard** - Global search vs page filters, debounce, URL state
|
|
253
|
+
- **20 quality standards** - Page composition, z-index, density, interaction states, content/copy, and more
|
|
259
254
|
|
|
260
255
|
## 🚀 Quick Start
|
|
261
256
|
|
|
@@ -282,7 +277,7 @@ npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-app
|
|
|
282
277
|
|
|
283
278
|
### 🏗️ **Production-Ready Stack**
|
|
284
279
|
|
|
285
|
-
- **Next.js 15.
|
|
280
|
+
- **Next.js 15.5** with App Router and Server Components
|
|
286
281
|
- **TypeScript** throughout with strict typing
|
|
287
282
|
- **Supabase** for database, auth, and real-time features
|
|
288
283
|
- **Stripe** for payments and subscriptions
|
|
@@ -299,9 +294,66 @@ npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-app
|
|
|
299
294
|
|
|
300
295
|
> 📋 **Quick Reference?** See the [Template Generator Guide](#-template-generator-guide) at the top for a complete table of all templates and commands.
|
|
301
296
|
|
|
302
|
-
Choose from **
|
|
297
|
+
Choose from **16 production-ready templates** across web and mobile platforms:
|
|
298
|
+
|
|
299
|
+
### 🌐 **Web Templates (13 Available)**
|
|
300
|
+
|
|
301
|
+
#### **Vertical Templates (Full App Flows)**
|
|
302
|
+
|
|
303
|
+
##### **Micro SaaS** (`micro-saas`)
|
|
304
|
+
|
|
305
|
+
Complete micro SaaS starter with landing page and auth
|
|
306
|
+
|
|
307
|
+
- **Landing page** - Hero, features, pricing CTA
|
|
308
|
+
- **Authentication** - Login, signup with demo auth
|
|
309
|
+
- **Dashboard** - Stats, quick actions, user profile
|
|
310
|
+
- **Design system** - Tailwind v4 tokens, dark/light mode
|
|
311
|
+
|
|
312
|
+
```bash
|
|
313
|
+
npx @digilogiclabs/create-saas-app create web micro-saas my-saas
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
##### **Digital Marketplace** (`marketplace`)
|
|
317
|
+
|
|
318
|
+
Full marketplace with products, cart, and seller dashboard
|
|
319
|
+
|
|
320
|
+
- **Product catalog** - Browse, search, filter, sort
|
|
321
|
+
- **Product detail** - Images, ratings, vendor info, add to cart
|
|
322
|
+
- **Shopping cart** - Quantity controls, order summary, checkout
|
|
323
|
+
- **Seller dashboard** - Stats, orders, product management
|
|
324
|
+
- **Settings** - Profile, notifications, payment methods
|
|
325
|
+
|
|
326
|
+
```bash
|
|
327
|
+
npx @digilogiclabs/create-saas-app create web marketplace my-shop
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
##### **AI Platform** (`ai-platform`)
|
|
303
331
|
|
|
304
|
-
|
|
332
|
+
AI chat and model management platform
|
|
333
|
+
|
|
334
|
+
- **AI Chat** - Multi-model chat with conversation history
|
|
335
|
+
- **Models catalog** - Browse providers (OpenAI, Anthropic, Google)
|
|
336
|
+
- **API Playground** - Test prompts with temperature/token controls
|
|
337
|
+
- **Dashboard** - Usage stats, credits, API keys
|
|
338
|
+
- **Settings** - Profile, API key management, billing
|
|
339
|
+
|
|
340
|
+
```bash
|
|
341
|
+
npx @digilogiclabs/create-saas-app create web ai-platform my-ai-app --with-ai=all
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
##### **IoT Dashboard** (`iot-dashboard`)
|
|
345
|
+
|
|
346
|
+
Real-time IoT monitoring and device management
|
|
347
|
+
|
|
348
|
+
- **Device management** - List, detail, add, filter by status/type
|
|
349
|
+
- **Live telemetry** - Real-time sensor data (temperature, humidity, pressure)
|
|
350
|
+
- **Alerts center** - Severity-based alerts with acknowledge flow
|
|
351
|
+
- **Dashboard** - Stats, device status, recent alerts
|
|
352
|
+
- **Settings** - Profile, notifications, API key
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
npx @digilogiclabs/create-saas-app create web iot-dashboard my-iot-app
|
|
356
|
+
```
|
|
305
357
|
|
|
306
358
|
#### **Core Templates**
|
|
307
359
|
|
|
@@ -430,7 +482,7 @@ Component testing environment for package development
|
|
|
430
482
|
npx @digilogiclabs/create-saas-app create web ui-package-test component-test
|
|
431
483
|
```
|
|
432
484
|
|
|
433
|
-
### 📱 **Mobile Templates (
|
|
485
|
+
### 📱 **Mobile Templates (3 Available)**
|
|
434
486
|
|
|
435
487
|
#### **Base Mobile** (`base`)
|
|
436
488
|
|
|
@@ -475,21 +527,6 @@ Complete mobile AI platform with generation capabilities
|
|
|
475
527
|
npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai ai-mobile-app --with-ai=all
|
|
476
528
|
```
|
|
477
529
|
|
|
478
|
-
#### **Mobile RAG Knowledge App** (`ui-auth-payments-ai-rag`)
|
|
479
|
-
|
|
480
|
-
Advanced mobile knowledge base with RAG capabilities
|
|
481
|
-
|
|
482
|
-
- **RAG Integration** - Vector search and document processing
|
|
483
|
-
- **Offline RAG** - Local knowledge base for mobile-first experience
|
|
484
|
-
- **Document Scanning** - Native camera integration for document capture
|
|
485
|
-
- **Knowledge Management** - Organize and search through personal knowledge
|
|
486
|
-
- **AI-Powered Q&A** - Intelligent question answering from documents
|
|
487
|
-
- **Complete Mobile Setup** - All required config files and dependencies
|
|
488
|
-
|
|
489
|
-
```bash
|
|
490
|
-
npx @digilogiclabs/create-saas-app create mobile ui-auth-payments-ai-rag knowledge-mobile --with-ai=rag
|
|
491
|
-
```
|
|
492
|
-
|
|
493
530
|
### 🚀 **Cross-Platform Templates**
|
|
494
531
|
|
|
495
532
|
#### **Full Stack Platform** (`ui-auth-payments`)
|
|
@@ -706,49 +743,52 @@ Built-in validation ensures your app is deployment-ready:
|
|
|
706
743
|
|
|
707
744
|
## 📦 Package Ecosystem
|
|
708
745
|
|
|
709
|
-
###
|
|
746
|
+
### 📦 **Platform Core** (v1.14.0)
|
|
710
747
|
|
|
711
|
-
- **@digilogiclabs/
|
|
712
|
-
- **
|
|
713
|
-
- **
|
|
714
|
-
- **
|
|
715
|
-
- **
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
- **
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
-
|
|
724
|
-
- **
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
- **
|
|
729
|
-
- **
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
- **
|
|
737
|
-
- **
|
|
738
|
-
- **
|
|
739
|
-
- **
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
-
|
|
745
|
-
-
|
|
746
|
-
- **
|
|
747
|
-
- **
|
|
748
|
-
- **
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
748
|
+
- **@digilogiclabs/platform-core** - Vendor-agnostic backend toolkit
|
|
749
|
+
- **34 interfaces** - IDatabase, ICache, IEmail, IStorage, IQueue, ITenant, IAI, and more
|
|
750
|
+
- **Production adapters** - PostgreSQL, Redis, S3/R2, SMTP, BullMQ, Stripe, OpenAI, Anthropic
|
|
751
|
+
- **Enterprise patterns** - Retry, circuit breaker, rate limiting, multi-tenancy
|
|
752
|
+
- **1,363+ tests** - All features testable with in-memory adapters
|
|
753
|
+
|
|
754
|
+
### 🎨 **UI & Design** (v1.8.3)
|
|
755
|
+
|
|
756
|
+
- **@digilogiclabs/saas-factory-ui** - Cross-platform React component library
|
|
757
|
+
- **100+ components** - Cards, buttons, forms, data grids, charts, audio players, and more
|
|
758
|
+
- **Cross-platform** - Single codebase for Next.js + React Native/Expo
|
|
759
|
+
- **Design system** - Surface variants, density modes, motion presets
|
|
760
|
+
- **Accessibility** - WCAG 2.1 AA compliant, SkipToContent, focus management
|
|
761
|
+
- **Tailwind CSS v4** - Design tokens with `@theme` integration
|
|
762
|
+
|
|
763
|
+
### 🔐 **Authentication** (v5.1.1)
|
|
764
|
+
|
|
765
|
+
- **@digilogiclabs/saas-factory-auth** - Pluggable authentication
|
|
766
|
+
- **20+ components** - LoginForm, SignupForm, SessionExpiredModal, AccessDeniedScreen
|
|
767
|
+
- **12 OAuth providers** - Google, GitHub, Microsoft, LinkedIn, Spotify, and more
|
|
768
|
+
- **ARIA compliant** - role="alert", aria-live, focus management
|
|
769
|
+
- **Keycloak + Supabase** adapters with platform-core IAuth
|
|
770
|
+
|
|
771
|
+
### 💳 **Payments** (v5.1.1)
|
|
772
|
+
|
|
773
|
+
- **@digilogiclabs/saas-factory-payments** - Stripe integration
|
|
774
|
+
- **Multi-provider** - Stripe, Apple Pay, PayPal buttons
|
|
775
|
+
- **Subscription lifecycle** - Create, update, cancel, pause, resume
|
|
776
|
+
- **Webhook handling** - Secure event processing and signature verification
|
|
777
|
+
- **platform-core IPayment** - Provider-agnostic payment interface
|
|
778
|
+
|
|
779
|
+
### 🤖 **AI Platform** (v8.0.1)
|
|
780
|
+
|
|
781
|
+
- **@digilogiclabs/saas-factory-ai** - Unified AI interface
|
|
782
|
+
- **Multi-provider** - OpenAI, Anthropic Claude, Google Gemini
|
|
783
|
+
- **Streaming** - Real-time token streaming for chat
|
|
784
|
+
- **Tool calling** - Function calling across all providers
|
|
785
|
+
- **RAG pipeline** - Pinecone and Weaviate vector search adapters
|
|
786
|
+
|
|
787
|
+
### 📱 **App SDK** (v1.1.0)
|
|
788
|
+
|
|
789
|
+
- **@digilogiclabs/app-sdk** - Unified React hooks
|
|
790
|
+
- **DLLProvider** - Single context wrapper for auth, payments, data
|
|
791
|
+
- **useAuth, usePayments, useData** - Consistent API across apps
|
|
752
792
|
|
|
753
793
|
## 🛠️ Command Reference
|
|
754
794
|
|