@bldmrk/create
v0.1.1
Published
Scaffolding tool for [bldmrk](https://github.com/bldmrk/bldmrk) — a flat-file CMS built on Node.js.
Readme
@bldmrk/create
Scaffolding tool for bldmrk — a flat-file CMS built on Node.js.
Usage
npm create bldmrk@latest
# or
npx create-bldmrkThe interactive wizard will ask for a project name and description, then generate a ready-to-use project directory.
What gets generated
my-site/
├── content/
│ ├── config/
│ │ ├── site.yaml # Site settings
│ │ └── system.yaml # CMS configuration
│ └── pages/
│ ├── 001--home/
│ │ ├── index.mdx
│ │ └── page.yaml
│ └── 002--blog/
├── package.json
└── pnpm-workspace.yamlAfter scaffolding
cd my-site
npm install
npm run dev # Start dev server at http://localhost:3000
npm run build # Build static siteRequirements
- Node.js 20+
- npm 7+ (for
npm create)
