From 9394657613014891ff91db6cd0a01b21bb257053 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Tue, 4 Nov 2025 10:42:18 +0000 Subject: feat: implement NIP-01 compliant Nostr relay - WebSocket-based relay using tokio-tungstenite - Full NIP-01 protocol support (EVENT, REQ, CLOSE) - Event validation (signature and ID) - In-memory event storage - Filter support (IDs, authors, kinds, since/until) - Configuration via environment variables - Nix flake for reproducible builds - Test automation script All 6 NIP-01 smoke tests passing (100%) --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 35e529d..f509de7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,13 @@ .ai/ # Rust build artifacts +target/ grasp-audit/target # Working directory (session-specific temporary files) work/* -!work/README.md \ No newline at end of file +!work/README.md + +# Environment and data +.env +data/ \ No newline at end of file -- cgit v1.2.3