genesis-stack 1.0.2 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genesis-stack",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "The optional curated technology Stack catalog for Genesis projects.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -19,7 +19,7 @@
19
19
  "test": "node --test"
20
20
  },
21
21
  "dependencies": {
22
- "@jskit-ai/agent-docs": "0.1.137"
22
+ "@jskit-ai/agent-docs": "0.1.147"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=22"
@@ -25,13 +25,25 @@ JSKIT MySQL runtime, live-schema CRUD generation, and persistence conventions.
25
25
  "kind": "mysql",
26
26
  "environmentAlternatives": [
27
27
  {
28
- "required": ["DATABASE_URL"]
28
+ "bindings": {
29
+ "database": "DB_NAME",
30
+ "host": "DB_HOST",
31
+ "password": "DB_PASSWORD",
32
+ "port": "DB_PORT",
33
+ "username": "DB_USER"
34
+ },
35
+ "allowEmpty": ["password"],
36
+ "preferred": true
29
37
  },
30
38
  {
31
- "required": ["DB_HOST", "DB_PORT", "DB_NAME", "DB_USER", "DB_PASSWORD"],
32
- "allowEmpty": ["DB_PASSWORD"]
39
+ "bindings": {
40
+ "url": "DATABASE_URL"
41
+ }
33
42
  }
34
- ]
43
+ ],
44
+ "optionalBindings": {
45
+ "testDatabase": "TEST_DB_NAME"
46
+ }
35
47
  }
36
48
  ```
37
49
 
@@ -25,11 +25,20 @@ JSKIT PostgreSQL runtime, live-schema CRUD generation, and persistence conventio
25
25
  "kind": "postgresql",
26
26
  "environmentAlternatives": [
27
27
  {
28
- "required": ["DATABASE_URL"]
28
+ "bindings": {
29
+ "database": "DB_NAME",
30
+ "host": "DB_HOST",
31
+ "password": "DB_PASSWORD",
32
+ "port": "DB_PORT",
33
+ "username": "DB_USER"
34
+ },
35
+ "allowEmpty": ["password"],
36
+ "preferred": true
29
37
  },
30
38
  {
31
- "required": ["DB_HOST", "DB_PORT", "DB_NAME", "DB_USER", "DB_PASSWORD"],
32
- "allowEmpty": ["DB_PASSWORD"]
39
+ "bindings": {
40
+ "url": "DATABASE_URL"
41
+ }
33
42
  }
34
43
  ]
35
44
  }
@@ -71,16 +71,21 @@ application-owned composition.
71
71
  - Match `source` as `Source`: `src/**`
72
72
  - Fallback `everything-else` as `Everything else`
73
73
 
74
- ## Launch
74
+ ## Outputs
75
75
 
76
76
  ### Target `app`: Run app
77
77
 
78
78
  - Default.
79
+ - Mode: `interactive`
80
+ - Runtimes: `nodejs`
81
+ - Run `Develop`: `npm` `run` `develop`
82
+
83
+ #### Presentation
84
+
85
+ - Kind: `web`
79
86
  - Preferred port: `3000`
80
87
  - URL path: `/`
81
88
  - Ready when: `GET` `/api/health` returns `200`
82
- - Runtimes: `nodejs`
83
- - Serve `Develop`: `npm` `run` `develop`
84
89
 
85
90
  ## Deployment
86
91