Templates
Templates
Starter projects you can scaffold with create-nextly-app.
Templates are starter projects you scaffold via create-nextly-app. The CLI prompts you to pick one during setup, or you can pass --template <name> for a non-interactive scaffold. Each template ships a working nextly.config.ts, the standard project layout, and (for non-blank templates) example collections, singles, and frontend pages.
Scaffold a project
pnpm create nextly-app my-appnpx create-nextly-app@latest my-appyarn create nextly-app my-appbun create nextly-app my-appWithout --template, the CLI prompts you to pick one. To skip the prompt, pass --template <name>:
pnpm create nextly-app my-app --template blank
pnpm create nextly-app my-app --template blogAvailable templates
- Blank -- Empty config, define your own schemas. Good when you want to start from scratch.
- Blog -- Complete blog with posts, categories, tags, frontend pages, and demo content. Good when you want a working starter to learn from.
More templates are planned for the beta release.
Next Steps
- Installation -- Full installation walkthrough including database and storage setup.
- Quick Start -- Build a blog from scratch in five minutes.
- Configuration -- Configure collections, singles, plugins, and more.