upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/docs/learnings
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-01-12 22:51:43 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-01-12 22:51:43 +0000
commit51751d59f30a0c0f396afd1873ece9f4f77b44de (patch)
treecfec6555427f1be38997e00f313549c41dfaa609 /docs/learnings
parentab3337d0a3bf25c282f4d48e5d6150cf291f41e5 (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/learnings')
-rw-r--r--docs/learnings/grasp-audit.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/learnings/grasp-audit.md b/docs/learnings/grasp-audit.md
index f4620d9..c7eff16 100644
--- a/docs/learnings/grasp-audit.md
+++ b/docs/learnings/grasp-audit.md
@@ -110,7 +110,7 @@ use grasp_audit::client::AuditClient;
110use grasp_audit::audit::AuditConfig; 110use grasp_audit::audit::AuditConfig;
111 111
112let config = AuditConfig::isolated(); 112let config = AuditConfig::isolated();
113let client = AuditClient::new("ws://localhost:8080", config).await?; 113let client = AuditClient::new("ws://localhost:7334", config).await?;
114 114
115// Create and send an event - cleanup tags are added automatically 115// Create and send an event - cleanup tags are added automatically
116let event = client.event_builder() 116let event = client.event_builder()