Getting Started
Prerequisites
Node.js 22 or later
Installation
npx create-oberon-app my-appAnswer the prompts:
- App name - Valid npm package name
- Package manager - npm, pnpm, or yarn
- Recipe - Application recipe (currently
nextjs) - Database - Turso, PostgreSQL, or custom
- Email service - Resend, SendGrid, or custom
- Admin email - Initial account email
The installer then:
- Copies the selected recipe into your target directory
- Generates
oberon/adapter.tsfrom selected plugins - Creates
.env.localwith the provided admin email - Installs dependencies and runs recipe prebuild
Run
cd my-app
pnpm devOpen http://localhost:3000/cms for the editor.
Options
Pre-fill prompts with flags:
npx create-oberon-app my-app --use pnpm --recipe nextjs --database turso --send resend --email admin@example.comUse --dir <directory> to scaffold into a directory different from the app
name.
See Also
- Configuration - Adapter and
oberon/config - Plugins - Database and email adapters
Last updated on