Bake production-ready apps in seconds | Modern CLI tool for Bun monorepo scaffolding
bunkit is a modern, opinionated CLI tool for scaffolding Bun-powered projects with enterprise-grade patterns built-in. Create production-ready full-stack applications, APIs, monorepos, and web apps with Next.js, Hono, TypeScript, Tailwind CSS, shadcn/ui, Drizzle ORM, Prisma ORM, MySQL, Redis, Supabase, better-auth, NextAuth.js, and more in seconds.
β¨ Stable Release: bunkit is production-ready and actively maintained. See CHANGELOG for latest updates and ROADMAP for planned features.
- ποΈ Monorepo Architecture - Bun workspaces + catalogs + isolated installs done right
- π¨ Beautiful Interactive CLI - Built with @clack/prompts (same as Astro) with 21+ configuration prompts
- π¦ Modern Stack - Next.js 16, React 19, Hono, Tailwind CSS 4
- β‘ Bun-Native - Leverages Bun 1.3+ features (catalogs, isolated installs, HMR)
- π Type-Safe by Default - TypeScript strict mode everywhere (configurable: strict, moderate, loose)
- π οΈ Shared TypeScript Tooling - Centralized TypeScript configurations (
tooling/typescript/) for consistent setup
- ποΈ PostgreSQL - With Drizzle ORM or Prisma ORM
- ποΈ MySQL - Native Bun 1.3 MySQL client with Drizzle ORM or Prisma ORM
- ποΈ SQLite - With Drizzle ORM or Prisma ORM
- ποΈ Supabase - Complete integration with presets (full-stack, auth-only, database-only, custom)
- Configurable features: auth, storage, realtime, edge-functions, database
- With or without Drizzle ORM / Prisma ORM
- π better-auth - Modern, flexible authentication library with database adapters
- π NextAuth.js - Popular Next.js authentication solution with database adapters
- π Supabase Auth - Built-in Supabase authentication
- β‘ Redis Support - Native Bun 1.3 Redis client for caching and session storage
- π Bun.secrets - Secure credential management using Bun.secrets API (alternative to .env files)
- π shadcn/ui Integration - Complete UI component system with themes, customization, and auto-installation
- Monorepo Support - Full integration in
packages/uiworkspace for enterprise and full-stack presets - 5 base color themes - Neutral, gray, zinc, stone, slate with OKLCH color values
- Style options - new-york (modern, rounded) or default (classic, sharper)
- Customizable border radius - Per-project customization via CLI
- Auto-installed default components - Button and card components installed automatically
- Bun catalog: compatibility - Properly handles Bun's catalog: protocol for dependency resolution
- Component management -
bunkit add componentcommand for adding components interactively - Tailwind CSS v4 - CSS-first configuration using
@theme inlinedirective (no config file needed) - Workspace imports - Components use
@workspace/uiimports with proper exports configuration
- Monorepo Support - Full integration in
- π¨ CSS Frameworks - Tailwind CSS 4, Vanilla CSS, CSS Modules
- π€ AI-Optimized - Ultracite integration (Cursor, Windsurf, Claude Code, Zed) - Official Ultracite structure with proper presets
- π Bun Debugging - Complete debugging support with WebKit Inspector Protocol
- Interactive Debugging -
bun --inspectfor WebSocket-based debugging - Break on Start -
bun --inspect-brkto pause at first line - Wait for Debugger -
bun --inspect-waitto wait for debugger attachment - VSCode Integration - Complete
.vscode/launch.jsonwith Bun debugger configurations - Network Debugging -
BUN_CONFIG_VERBOSE_FETCHfor debugging fetch/node:http requests- Set to
curlto print requests as curl commands - Set to
trueto print request & response info
- Set to
- Sourcemaps - Automatic sourcemap generation for TypeScript/JSX
- V8 Stack Traces - Node.js-compatible stack traces with V8 Stack Trace API
- Pre-configured Scripts -
debug,debug:brk,debug:waitscripts in all presets
- Interactive Debugging -
- πΎ Custom Presets - Save and reuse project configurations (
bunkit preset save/load/list/delete) - π Dependency Catalog - Centralized version management (
bunkit catalog add/sync/list) - π― Workspace Management - Add workspaces and shared packages easily (
bunkit add workspace/package) - βοΈ Bun Configuration Defaults - Comprehensive
bunfig.tomlwith sensible defaults- Package installation settings (auto-install, isolated installs for monorepos)
- Test runner configuration (coverage, reporters, thresholds)
- Runtime configuration (log levels, telemetry, console depth)
- Script execution settings (shell, node aliasing)
- Fully documented with inline comments and debugging tips
- π³ Docker Ready - Complete Docker setup for local development and production
- Multi-stage Dockerfiles - Optimized builds with Bun official images
- Docker Compose - Full local development stack with all dependencies
- Supabase Local - Complete Supabase stack (PostgreSQL, Auth, Storage, Realtime, Studio) when using Supabase
- Redis Local - Redis container for caching and sessions when enabled
- Database Containers - PostgreSQL, MySQL, or SQLite containers based on configuration
- Network Isolation - Proper Docker networks for service communication
- Production Ready - Non-root user, optimized layers, proper caching
- π CI/CD Built-in - GitHub Actions workflows with lint/test/build/docker
- π§ͺ Testing Frameworks - Bun Test (built-in) or Vitest
- π Code Quality - Biome or Ultracite for linting and formatting
- π’ Enterprise Patterns - Monorepo architecture, shared packages, proper structure
- π¦ 8 Production-Ready Presets - From minimal to enterprise monorepo
- π§ Individual Dev Scripts - Run specific apps/services independently (
dev:web,dev:app,dev:platform, etc.)
bunx bunkit-cli initbun add -g bunkit-cli
bunkit init- Bun v1.3.0 or higher (required for catalogs, isolated installs, MySQL, Redis)
- Node.js v20.9.0 or higher (required for Next.js 16)
bunkit offers 8 presets with clear, descriptive names following the pattern {framework}-{architecture}. All presets support aliases for backwards compatibility.
- Framework:
nextjs,hono-api,bun-api,bun-fullstack - Architecture: (none) = single repo,
monorepo= monorepo structure - Aliases: Old names still work (
webβnextjs,apiβhono-api,fullβnextjs-monorepo)
Perfect for CLIs, scripts, utilities, and proof-of-concepts.
What you get:
- Bun runtime with hot reload (
bun --hot) - TypeScript configured
- Clean folder structure
- Basic
.gitignore
bunkit create minimal my-tool
cd my-tool
bun run devUse cases: CLI tools, scripts, learning projects, microservices
Complete Next.js application with React 19, Tailwind CSS 4, and modern tooling.
What you get:
- Next.js 16 with App Router
- React 19 (Server Components by default)
- Tailwind CSS 4 (CSS-first configuration)
- shadcn/ui - Complete UI component system (optional, configurable)
- 5 base color themes (neutral, gray, zinc, stone, slate)
- Style options (new-york, default)
- Customizable border radius
- Auto-installed default components (button, card)
- Example components and documentation
- Biome (linting + formatting)
- TypeScript strict mode
- Optimal folder structure
bunkit create nextjs my-app
# Alias: bunkit create web my-app
cd my-app
bun install # If --no-install was used
bun devUse cases: Landing pages, marketing sites, SaaS frontends, web applications
Lightning-fast API built with Hono and Bun.serve() with native HMR.
What you get:
- Hono v4 web framework
- Bun.serve() with HMR enabled
- Example routes and middleware
- CORS and logging configured
- Error handling patterns
- TypeScript with Bun types
bunkit create hono-api my-api
# Alias: bunkit create api my-api
cd my-api
bun run devUse cases: REST APIs, GraphQL servers, webhooks, backend services
Ultra-fast API server using Bun.serve() native routing with zero external dependencies.
What you get:
- Bun.serve() with native routing (SIMD-accelerated)
- Zero dependencies (pure Bun runtime)
- Type-safe route parameters
- Built-in error handling
- Request utilities and middleware patterns
- TypeScript with Bun types
bunkit create bun-api my-api
cd my-api
bun run devUse cases: High-performance APIs, microservices, serverless functions
Full-stack application using Bun.serve() with HTML imports - React without Next.js.
What you get:
- Bun.serve() with HTML imports support
- React 19 (client-side)
- Hot reloading
- API routes alongside frontend
- TypeScript configured
- No Next.js dependency
bunkit create bun-fullstack my-app
cd my-app
bun run devUse cases: Full-stack apps without Next.js, React SPA with Bun backend
Enterprise-grade monorepo with Next.js frontend, Hono backend, and shared packages.
What you get:
- Bun workspaces - Configured with dependency catalogs
- Dependency catalogs - Centralized version management
- Isolated installs - No phantom dependencies
- Apps:
apps/web/- Next.js frontend (customer-facing)apps/platform/- Next.js admin dashboard (port 3001)apps/api/- Hono backend API
- Packages:
packages/types/- Shared TypeScript typespackages/utils/- Shared utilitiespackages/ui/- Shared UI components (shadcn/ui, optional)
- Shared tooling:
tooling/typescript/- Shared TypeScript configurations
- Code quality - Biome for linting and formatting
- TypeScript - Proper project references across workspaces
- Individual dev commands - Run specific apps independently
bunkit create nextjs-monorepo my-saas
# Aliases: bunkit create full my-saas
# bunkit create monorepo-nextjs my-saas
cd my-saas
bun install
bun dev # Starts all apps
# Or start individually:
bun run dev:web # Start customer-facing app
bun run dev:platform # Start admin dashboard
bun run dev:api # Start backend APIUse cases: SaaS products, full-stack applications, multi-app projects
Enterprise monorepo using Bun.serve() for both frontend and backend - no Next.js required.
What you get:
- Bun workspaces configured
- Apps:
apps/web/- Bun.serve() + HTML imports (React frontend)apps/api/- Bun.serve() native API
- Packages:
packages/types/- Shared TypeScript typespackages/utils/- Shared utilities
- Shared tooling:
tooling/typescript/- Shared TypeScript configurations
- All Bun-native, no Next.js
- Individual dev commands per app
bunkit create bun-monorepo my-saas
# Alias: bunkit create monorepo-bun my-saas
cd my-saas
bun install
bun dev # Starts all apps
# Or start individually:
bun run dev:web # Start web app
bun run dev:api # Start API serverUse cases: Full-stack monorepos without Next.js, Bun-native architectures
Enterprise-grade monorepo with multiple Next.js applications and microservices - perfect for complex SaaS platforms.
What you get:
- Multiple Next.js apps:
apps/web/- Marketing/Landing site (port 3000)apps/app/- Main SaaS product application (port 3002)apps/platform/- Admin dashboard (port 3001)
- Microservices:
apps/service-identity/- Identity & authentication service (port 3003)
- Shared packages:
packages/types/- Shared TypeScript typespackages/utils/- Shared utilitiespackages/ui/- Shared UI components (shadcn/ui)- Full shadcn/ui integration with Tailwind CSS v4
- Interactive theme customization during project creation
- Default components (button, card) auto-installed
- Workspace imports (
@workspace/ui) configured
packages/db/- Shared database schema (if configured)
- Shared tooling:
tooling/typescript/- Shared TypeScript configurations
- Bun workspaces - Configured with dependency catalogs
- Dependency catalogs - Centralized version management
- Individual dev commands - Run specific apps/services independently
- Port management - All scripts support
PORTenvironment variable override - Ready for microservices architecture
bunkit create enterprise-monorepo my-platform
# Interactive theme customization:
# - Component style (new-york/default)
# - Base color (neutral/gray/zinc/stone/slate)
# - Border radius (customizable)
cd my-platform
bun install
bun dev # Starts all apps and services
# Or start individually:
bun run dev:web # Start marketing site (port 3000)
bun run dev:app # Start main product app (port 3002)
bun run dev:platform # Start admin dashboard (port 3001)
bun run dev:identity # Start identity service (port 3003)Use cases: Enterprise SaaS platforms, multi-tenant applications, complex architectures with multiple apps and services
Adding more services:
# Add a new service
bunkit add workspace --name apps/service-payments --preset hono
# Add another Next.js app
bunkit add workspace --name apps/docs --preset nextjsInteractive project creation with beautiful prompts.
bunkit init
# Alias: bunkit iYou'll be guided through 21+ interactive prompts Γ la carte - choose exactly what you need:
- Project name
- Preset type (minimal/nextjs/hono-api/bun-api/bun-fullstack/nextjs-monorepo/bun-monorepo/enterprise-monorepo)
- All old names still work:
webβnextjs,apiβhono-api,fullβnextjs-monorepo
- All old names still work:
- Database configuration (PostgreSQL/Drizzle/Prisma, MySQL/Drizzle/Prisma, SQLite/Drizzle/Prisma, Supabase variants, none)
- Supabase configuration (if selected):
- Preset: full-stack, auth-only, database-only, or custom
- Features: auth, storage, realtime, edge-functions, database
- Authentication system (better-auth, NextAuth.js, Supabase, none) - for API/Full-stack presets
- Redis cache/session store (yes/no) - for API/Full-stack presets
- Bun.secrets for environment variables (yes/no) - all presets
- Code quality tool (Ultracite, Biome)
- TypeScript strictness level (strict, moderate, loose)
- CSS framework (Tailwind, Vanilla, CSS Modules)
- UI library (shadcn/ui with full customization, none)
- shadcn/ui options (if selected):
- Style: new-york, default
- Base color: neutral, gray, zinc, stone, slate
- Border radius: customizable
- Testing framework (Bun Test, Vitest, none)
- Docker configuration (yes/no)
- CI/CD setup (yes/no)
- Install dependencies? (default: yes)
- Initialize git? (default: yes)
Options:
--name <name>- Project name (kebab-case recommended)--preset <preset>- Preset type (minimal, nextjs, hono-api, bun-api, bun-fullstack, nextjs-monorepo, bun-monorepo, enterprise-monorepo)--database <database>- Database option (postgres-drizzle, postgres-prisma, mysql-drizzle, mysql-prisma, supabase, supabase-drizzle, supabase-prisma, sqlite-drizzle, sqlite-prisma, none)--auth <auth>- Authentication system (better-auth, nextauth, supabase, none) - for API/Full-stack presets--redis- Enable Redis cache/session store - for API/Full-stack presets--use-bun-secrets- Use Bun.secrets API instead of .env files--supabase-preset <preset>- Supabase preset (full-stack, auth-only, database-only, custom)--supabase-features <features>- Comma-separated Supabase features (auth,storage,realtime,edge-functions,database)--code-quality <tool>- Code quality tool (ultracite, biome)--ts-strictness <level>- TypeScript strictness (strict, moderate, loose)--ui-library <library>- UI library (shadcn, none)--css-framework <framework>- CSS framework (tailwind, vanilla, css-modules)--shadcn-style <style>- shadcn/ui style (new-york, default)--shadcn-base-color <color>- shadcn/ui base color (neutral, gray, zinc, stone, slate)--shadcn-radius <radius>- shadcn/ui border radius (e.g., 0.5rem, 8px)--testing <framework>- Testing framework (bun-test, vitest, none)--docker- Include Docker configuration--cicd- Include GitHub Actions CI/CD--no-git- Skip git initialization--no-install- Skip dependency installation--non-interactive- Run without prompts (requires all options via flags)--save-preset <name>- Save current configuration as a custom preset--load-preset <name>- Load configuration from a custom preset
Examples:
# Interactive mode (recommended)
bunkit init
# Quick creation with preset
bunkit init --name my-app --preset nextjs
# Full customization via flags
bunkit init --name my-saas --preset nextjs-monorepo --database supabase --docker --cicd
# Save configuration as preset
bunkit init --save-preset my-api-preset
# Load saved preset
bunkit init --load-preset my-api-presetQuick, non-interactive project creation with sensible defaults.
bunkit create nextjs my-app
# Alias: bunkit c nextjs my-app
bunkit create hono-api my-api --no-git
bunkit create nextjs-monorepo my-saas --no-install
# Aliases still work: bunkit create web my-appOptions:
--no-git- Skip git initialization--no-install- Skip dependency installation
Note: This command uses sensible defaults. Use bunkit init for full customization with all options.
Presets:
minimal- Single-file Bun projectnextjs- Next.js 16 + React 19 web application (single repo)hono-api- Hono 4 + Bun.serve() API server (single repo)bun-api- Bun.serve() native routing (zero dependencies, single repo)bun-fullstack- Bun.serve() + HTML imports (no Next.js, single repo)nextjs-monorepo- Monorepo with Next.js + Honobun-monorepo- Monorepo with Bun.serve() (no Next.js)enterprise-monorepo- Enterprise monorepo with multiple apps and services
Aliases (backwards compatible):
webβnextjsapiβhono-apifullβnextjs-monorepomonorepo-bunβbun-monorepo
Extend your monorepo with new workspaces, shared packages, or shadcn/ui components.
# Use the alias
bunkit a workspace
bunkit a package
bunkit a componentAvailable features:
1. Workspace - Add a new workspace to monorepo
bunkit add workspace # Interactive mode
bunkit add workspace --name apps/admin --preset nextjs
bunkit add workspace --name apps/docs --preset nextjs
bunkit add workspace --name apps/api --preset hono2. Package - Add a shared package to monorepo
bunkit add package # Interactive mode
bunkit add package --name @myapp/email --type library
bunkit add package --name utils --type utils
bunkit add package --name types --type types3. Component - Add shadcn/ui components (requires shadcn/ui setup)
# Add specific components
bunkit add component --components button,card,input
# Browse all available components interactively
bunkit add component --allOptions:
--name <name>- Feature name (e.g., apps/admin, @myapp/utils, button)--preset <preset>- Workspace preset (nextjs, hono, library) - for workspace feature--type <type>- Package type (library, utils, types, config) - for package feature--components <components>- Comma-separated component names (e.g., button,card,input) - for component feature--all- Show interactive component browser - for component feature
Examples:
# Create a full-stack monorepo
bunkit init --preset nextjs-monorepo --name my-saas
cd my-saas
# Add admin dashboard workspace
bunkit add workspace --name apps/admin --preset nextjs
# Add shared email package
bunkit add package --name @myapp/email --type library
# Add shared types package
bunkit add package --name @myapp/types --type types
# Add shadcn/ui components
bunkit add component --components button,card,input
# Use shared packages in workspaces
# apps/admin/package.json:
# "dependencies": {
# "@myapp/email": "workspace:*",
# "@myapp/types": "workspace:*"
# }Manage custom presets - save and reuse project configurations.
# List all custom presets
bunkit preset list
# Delete a custom preset
bunkit preset delete <name>
# Save preset (use during init flow)
bunkit init --save-preset <name>
# Load preset
bunkit init --load-preset <name>Subcommands:
list- List all custom presetsdelete [name]- Delete a custom preset (interactive if name not provided)save [name]- Save current configuration (usebunkit init --save-presetinstead)
Examples:
# List all saved presets
bunkit preset list
# Delete a preset interactively
bunkit preset delete
# Delete a specific preset
bunkit preset delete my-api-preset
# Save a preset during init
bunkit init --save-preset my-custom-preset
# Use a saved preset
bunkit init --load-preset my-custom-presetManage dependency catalog for version synchronization across monorepo workspaces.
# Alias: bunkit cat
bunkit catalog add <package> [version]
bunkit catalog sync
bunkit catalog listSubcommands:
1. add <package> [version] - Add package to catalog
# Interactive mode
bunkit catalog add
# Add with version
bunkit catalog add zod ^3.24.1
bunkit catalog add hono ^4.10.6
bunkit catalog add @prisma/client latest2. sync - Sync catalog versions across all workspaces
bunkit catalog syncUpdates all workspace package.json files to use catalog: for packages that exist in the catalog.
3. list - List all packages in catalog
bunkit catalog listHow it works:
-
Add packages to catalog in root
package.json:{ "catalog": { "react": "^19.1.0", "hono": "^4.10.6" } } -
Reference in workspace
package.json:{ "dependencies": { "react": "catalog:", "hono": "catalog:" } } -
Sync versions across all workspaces:
bunkit catalog sync
Examples:
# Add packages to catalog
bunkit catalog add react ^19.1.0
bunkit catalog add next ^16.0.0
bunkit catalog add hono ^4.10.6
# List catalog contents
bunkit catalog list
# Sync versions across workspaces
bunkit catalog sync
bun install # Update lockfilemy-tool/
βββ src/
β βββ index.ts
βββ package.json
βββ tsconfig.json
βββ bunfig.toml
βββ README.md
my-app/
βββ src/
β βββ app/
β βββ globals.css
β βββ layout.tsx
β βββ page.tsx
βββ public/
βββ package.json
βββ next.config.ts
βββ tailwind.config.ts
βββ tsconfig.json
βββ biome.json
βββ README.md
my-api/
βββ src/
β βββ index.ts
β βββ routes/
β β βββ users.ts
β βββ middleware/
βββ package.json
βββ tsconfig.json
βββ bunfig.toml
βββ README.md
my-saas/
βββ apps/
β βββ web/ # Next.js frontend (customer-facing)
β βββ platform/ # Next.js admin dashboard (port 3001)
β βββ api/ # Hono API backend
βββ packages/
β βββ types/ # Shared TypeScript types
β βββ utils/ # Shared utilities
βββ tooling/
β βββ typescript/ # Shared TypeScript configurations
βββ package.json # Root with catalogs
βββ bunfig.toml
βββ tsconfig.json
βββ README.md
my-platform/
βββ apps/
β βββ web/ # Marketing/Landing site (port 3000)
β βββ app/ # Main SaaS product (port 3002)
β βββ platform/ # Admin/Dashboard (port 3001)
β βββ service-identity/ # Identity service API (port 3003)
βββ packages/
β βββ types/ # Shared TypeScript types
β βββ utils/ # Shared utilities
β βββ ui/ # Shared UI components (shadcn/ui)
β βββ db/ # Shared database schema (if configured)
βββ tooling/
β βββ typescript/ # Shared TypeScript configurations
βββ package.json # Root with catalogs
βββ bunfig.toml
βββ tsconfig.json
βββ README.md
| Category | Technology | Version |
|---|---|---|
| Runtime | Bun | 1.3+ |
| Frontend | Next.js | 16.0.3+ |
| React | React | 19.2.0+ |
| Backend | Hono | 4.10.6+ |
| Database | Drizzle ORM | 0.44.7+ |
| Database | Supabase JS | 2.81.1+ |
| Styling | Tailwind CSS | 4.1.17+ |
| UI Components | shadcn/ui | Latest |
| Language | TypeScript | 5.9.3+ |
| Code Quality | Biome / Ultracite | 2.3.6+ / 6.3.4+ |
| Testing | Bun Test / Vitest | Built-in / 2.0.0+ |
bunkit is built on these principles:
- Architecture, Not Product - Provides foundation and structure, not business logic
- Bun-First - Leverages Bun 1.3+ features (catalogs, isolated installs, workspaces)
- Monorepo Expertise - Makes Bun monorepos easy and maintainable
- Type Safety - Strict TypeScript everywhere, proper project references
- Modern Stack - Latest stable versions (Next.js 16, React 19, Hono, Tailwind 4)
- Developer Experience - Beautiful CLI, hot reload, clear conventions
| Feature | bunkit | create-next-app | create-t3-app | turborepo | v1 |
|---|---|---|---|---|---|
| Bun-native | β | β | β | β | |
| Workspace management | β | β | β | β (Turborepo) | |
| Shared packages | β | β | β | β | |
| Dependency catalogs | β | β | β | β | β |
| Isolated installs | β | β | β | β | β |
| Multiple presets | β (8) | β (1) | β | β | β (1) |
| No Next.js options | β (3 presets) | β | β | β | β |
| API backend | β Hono | β | β tRPC | β | β |
| Interactive CLI | β | β | β | β | |
| Monorepo tooling | β Bun workspaces | β | β | β Turborepo | β Turborepo |
bunkit's unique value: Bun-native monorepo management with dependency catalogs and isolated installs. Perfect for Bun-first projects that want enterprise patterns without Turborepo complexity.
bunkit uses Changesets for semantic versioning and changelog management.
- v1.1.1 (Current) - Fix shadcn/ui component installation with catalog: dependencies
- Fixed critical bug where shadcn CLI failed with npm "Unsupported URL Type catalog:" error
- Dependencies now install with Bun before shadcn CLI runs, ensuring catalog: references are resolved
- Updated catalog versions and added lucide-react to root catalog
- v1.1.0 - Major shadcn/ui monorepo improvements and enterprise preset enhancements
- Full monorepo support for shadcn/ui in
packages/uiworkspace - Interactive theme customization for enterprise-monorepo preset
- Automatic component installation and Tailwind CSS v4 support
- Full monorepo support for shadcn/ui in
- v1.0.2 - Comprehensive test suite with 98%+ code coverage
- v1.0.1 - Fix nested directory creation bug
- v1.0.0 - Enterprise-grade monorepo improvements, shared TypeScript tooling, enhanced scripts
- v0.9.0 - Bun 1.3 integration, database expansion (Prisma, MySQL, Redis), auth systems, Γ la carte CLI
- v0.8.0 - Complete Supabase integration with presets and granular feature selection
See CHANGELOG for complete version history and CONTRIBUTING.md for release process details.
See ROADMAP.md for the complete roadmap and planned features.
Contributions are welcome! Please see CONTRIBUTING.md
MIT Β© Arakiss
- @clack/prompts - Beautiful CLI prompts by the Astro team
- create-t3-app - Inspiration for modular approach
- v1 - Inspiration for SaaS starter patterns and architecture
- Bun - The amazing all-in-one JavaScript runtime
Made with β€οΈ for the indie hacker community | GitHub | Issues