From 27e7cd07fd044a384d900b3526b216fbc7301f09 Mon Sep 17 00:00:00 2001 From: DjeAvd Date: Wed, 15 Apr 2026 12:08:48 +0100 Subject: [PATCH] chore(gateway): exclude config.json from repo, add example config config.json contains deployment-specific values and should not be versioned. config.example.json serves as a template for new deployments. --- .gitignore | 2 ++ gateway/{config.json => config.example.json} | 0 2 files changed, 2 insertions(+) rename gateway/{config.json => config.example.json} (100%) diff --git a/.gitignore b/.gitignore index 17625f4..19e05c1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .zed .vscode .idea +HEAD # Local .claude/ @@ -10,3 +11,4 @@ # Secrets **/secrets/ **/.env +gateway/config.json diff --git a/gateway/config.json b/gateway/config.example.json similarity index 100% rename from gateway/config.json rename to gateway/config.example.json