From e3b336ab45a6acf8a02a8c0f1b6d22fb3a320826 Mon Sep 17 00:00:00 2001 From: bndw Date: Fri, 13 Feb 2026 17:50:09 -0800 Subject: feat: add relay server and test client Server (cmd/relay): - gRPC server on :50051 (configurable) - SQLite database (default: relay.db) - Graceful shutdown on SIGTERM/SIGINT Test client (cmd/testclient): - Generates key - Publishes event - Queries events back Build: - make build (relay) - make build-client (test client) - make build-all (both) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 6ffd1c7..9c743ac 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,9 @@ Thumbs.db *.db-shm *.db-wal +# Relay data +relay.db* + # Config (may contain secrets) config.yaml config.yml -- cgit v1.2.3