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
- HSM / signing invoked in-process via [tokencore](https://github.com/GalaxySciTech/tokencore)`com.github.galaxyscitech:tokencore:2.0.1`
16
+
-Optional **external HTTP signer** when `wallet_chain_config.signing_backend` = `EXTERNAL` (see `wallet.external-signer` in [`application.yml`](src/main/resources/application.yml))
17
17
18
18
This means fewer moving parts, easier troubleshooting, and faster onboarding for developers and DevOps teams.
19
19
@@ -67,9 +67,27 @@ Services:
67
67
### Option B: Run locally with Gradle
68
68
69
69
```bash
70
-
./gradlew :wallet-webapi:bootRun
70
+
./gradlew bootRun
71
71
```
72
72
73
+
Initialize the database from [`db/wallet_db.sql`](db/wallet_db.sql). If you already have `wallet_chain_config`, apply [`db/002_wallet_chain_signing_backend.sql`](db/002_wallet_chain_signing_backend.sql) for the `signing_backend` column.
74
+
75
+
### Configuration highlights
76
+
77
+
| Area | Notes |
78
+
|------|--------|
79
+
| JDBC |`DB_URL`, `DB_USERNAME`, `DB_PASSWORD` (see [`.env.example`](.env.example)) |
0 commit comments