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
Open **http://localhost:8080** for the dev sandbox (provision, w3ds flows, sign).
70
-
71
-
## Optional: databases only
72
-
73
-
To run only Postgres and Neo4j (e.g. you run the app services yourself):
74
-
75
-
```bash
76
-
pnpm docker:core
77
-
```
78
-
79
-
Or: `docker compose -f docker-compose.databases.yml up -d`. Stop with `pnpm docker:core:down`.
80
-
81
-
## Troubleshooting
82
-
83
-
**Neo4j "encryption setting" or connection refused:** The stack uses **Neo4j 4.4** (unencrypted Bolt by default). If you previously used Neo4j 5.x, remove the old data and recreate:
84
-
85
-
```bash
86
-
docker compose -f docker-compose.databases.yml down
The Registry signs entropy tokens (used by the eID Wallet and provisioning) with an ES256 key. You must set `REGISTRY_ENTROPY_KEY_JWK` to a JSON Web Key (private key). From the repo root, generate a JWK (output to stdout) and add it to `.env`:
42
+
43
+
```bash
44
+
pnpm generate-entropy-jwk
45
+
```
46
+
47
+
Put the output in `.env` as `REGISTRY_ENTROPY_KEY_JWK='<paste>'`. Keep the key private; use the same value across local dev if you need tokens to verify elsewhere.
0 commit comments