Documentation

Everything you need to get started with ForkCart.

Quick Start

$ npx create-forkcart my-shop

✓ Downloaded ForkCart v0.1.0
✓ Installed dependencies
🚀 Launching setup wizard...

✓ Open localhost:4200 in your browser

Prerequisites

  • Node.js 20+
  • pnpm 9+
  • PostgreSQL 15+

Project Structure

forkcart/ ├── packages/ │ ├── api/ # Hono API server │ ├── admin/ # Next.js 15 admin panel │ ├── storefront/ # Next.js 15 storefront │ ├── installer/ # Web installer (setup wizard) │ ├── create-forkcart/# npx create-forkcart CLI │ ├── core/ # Shared business logic │ ├── database/ # Drizzle schema & migrations │ ├── shared/ # Shared types & utilities │ ├── ai/ # AI integrations │ ├── i18n/ # Internationalization │ ├── plugin-sdk/ # Plugin development kit │ └── mobile/ # React Native app └── plugins/ # Built-in plugins

Resources