@robsun/create-keystone-app 0.1.1 → 0.1.2

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/README.md +33 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @robsun/create-keystone-app
2
+
3
+ Minimal Keystone platform scaffold (web + server) with a demo module.
4
+
5
+ ## Requirements
6
+ - Node 18+
7
+ - pnpm
8
+ - Go 1.23+
9
+
10
+ ## Usage
11
+ ```bash
12
+ npx @robsun/create-keystone-app my-app
13
+ # or
14
+ pnpm dlx @robsun/create-keystone-app my-app
15
+ ```
16
+
17
+ ## Next steps
18
+ ```bash
19
+ cd my-app
20
+ pnpm install
21
+ pnpm server:dev
22
+ pnpm dev
23
+ ```
24
+
25
+ ## Demo module
26
+ - Menu: Demo Tasks
27
+ - API: /api/v1/demo/tasks
28
+
29
+ Default login:
30
+
31
+ - Tenant code: default
32
+ - Identifier: admin
33
+ - Password: Admin123!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robsun/create-keystone-app",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },