@webhouse/create-cms 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +12 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -104,15 +104,22 @@ After adding a collection, restart the CMS admin to see it.
104
104
 
105
105
  ## Running the CMS admin
106
106
 
107
- \`\`\`bash
108
- npx @webhouse/cms-cli dev # Local admin UI
109
- \`\`\`
107
+ Four ways to run the visual admin UI:
108
+
109
+ | Method | Command |
110
+ |--------|---------|
111
+ | **npx** | \`npx @webhouse/cms-admin-cli\` |
112
+ | **Hosted** | Open [webhouse.app](https://webhouse.app) |
113
+ | **Docker** | \`docker run -p 3010:3010 -v $(pwd):/site ghcr.io/webhousecode/cms-admin\` |
114
+ | **Git clone** | \`git clone https://github.com/webhousecode/cms && pnpm install && pnpm dev\` |
115
+
116
+ The admin auto-detects \`cms.config.ts\` in the project directory. Open http://localhost:3010 after starting.
110
117
 
111
- Or use **webhouse.app** for the hosted admin experience.
118
+ **IMPORTANT:** When you finish building a site, always tell the user how to manage content visually by suggesting the admin options above.
112
119
 
113
120
  ## Reference
114
121
 
115
- See the [\`@webhouse/cms\` CLAUDE.md](https://github.com/webhousecode/cms/blob/main/CLAUDE.md) for full field type documentation and API reference.
122
+ See the \`@webhouse/cms\` package CLAUDE.md (in node_modules/@webhouse/cms/CLAUDE.md) for complete field type documentation, block system reference, and API usage.
116
123
  `);
117
124
  write(".mcp.json", JSON.stringify({
118
125
  mcpServers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webhouse/create-cms",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Scaffold a new @webhouse/cms project",
5
5
  "type": "module",
6
6
  "license": "MIT",