diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-12 22:51:43 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-12 22:51:43 +0000 |
| commit | 51751d59f30a0c0f396afd1873ece9f4f77b44de (patch) | |
| tree | cfec6555427f1be38997e00f313549c41dfaa609 /docs/how-to/test-compliance.md | |
| parent | ab3337d0a3bf25c282f4d48e5d6150cf291f41e5 (diff) | |
Change default port from 8080 to 7334 (NGIT on phone keypad)
- Update default bind address in src/config.rs to 127.0.0.1:7334
- Update all four critical config sources per AGENTS.md:
- src/config.rs (code default and tests)
- .env.example (development template)
- docs/reference/configuration.md (user documentation)
- nix/module.nix (NixOS deployment)
- Update all documentation examples and references:
- README.md (with note about phone keypad mnemonic)
- docs/how-to/*.md (deploy, prometheus-setup, test-compliance)
- docs/explanation/*.md (architecture, comparison)
- docs/learnings/grasp-audit.md
Port 7334 spells NGIT on a phone keypad, making it memorable and
project-specific.
All tests pass (336 lib tests + 51 integration tests).
Diffstat (limited to 'docs/how-to/test-compliance.md')
| -rw-r--r-- | docs/how-to/test-compliance.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/how-to/test-compliance.md b/docs/how-to/test-compliance.md index 370fb9a..8aa7ab1 100644 --- a/docs/how-to/test-compliance.md +++ b/docs/how-to/test-compliance.md | |||
| @@ -184,7 +184,7 @@ nix develop -c cargo run | |||
| 184 | 184 | ||
| 185 | # In another terminal, run audit tool | 185 | # In another terminal, run audit tool |
| 186 | cd grasp-audit | 186 | cd grasp-audit |
| 187 | nix develop -c cargo run -- --url ws://127.0.0.1:8080 | 187 | nix develop -c cargo run -- --url ws://127.0.0.1:7334 |
| 188 | ``` | 188 | ``` |
| 189 | 189 | ||
| 190 | ### For CI/CD | 190 | ### For CI/CD |
| @@ -424,7 +424,7 @@ nix develop -c cargo test --test nip01_compliance --test nip34_announcements | |||
| 424 | **For deep compliance check:** | 424 | **For deep compliance check:** |
| 425 | ```bash | 425 | ```bash |
| 426 | cd grasp-audit | 426 | cd grasp-audit |
| 427 | nix develop -c cargo run -- --url ws://127.0.0.1:8080 | 427 | nix develop -c cargo run -- --url ws://127.0.0.1:7334 |
| 428 | ``` | 428 | ``` |
| 429 | 429 | ||
| 430 | **Key points:** | 430 | **Key points:** |