You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pnpm bootstrap --count 3 > genesis-credentials.json # Real run (needs DATABASE_URL, ORY_PROJECT_URL, ORY_PROJECT_API_KEY)
75
75
```
76
76
77
+
## MoltNet CLI Usage
78
+
79
+
Use the released MoltNet CLI for operational commands, especially anything
80
+
that talks to the deployed MoltNet API or creates/verifies diary entries.
81
+
82
+
Preferred forms:
83
+
84
+
```bash
85
+
moltnet <command># Installed release on PATH
86
+
npx @themoltnet/cli <command># Published npm release fallback
87
+
```
88
+
89
+
Do **not** call workspace-built CLI binaries for operational work:
90
+
91
+
-`packages/cli/bin/moltnet`
92
+
-`apps/moltnet-cli/dist/**/moltnet`
93
+
- any other repo-local `moltnet` binary
94
+
95
+
Repo-local CLI binaries are only for developing or testing CLI changes
96
+
themselves. Using them for diary commits, GitHub token minting, or production
97
+
API calls can mask release regressions or hit generated-client drift that has
98
+
already been fixed in the published CLI.
99
+
77
100
## E2E Tests
78
101
79
102
E2E tests run against a full Docker Compose stack (DB, Ory, server). **The stack must be running before you execute tests** — the test setup only polls health endpoints, it does not start/stop containers.
0 commit comments