@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.
- package/dist/index.js +12 -5
- 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
|
-
|
|
108
|
-
|
|
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
|
-
|
|
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
|
|
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: {
|