From 395f9a6b8b10e6dcb2d31d2f891c445c423d0df9 Mon Sep 17 00:00:00 2001 From: "Anoduck, The Anonymous Duck" <11767-anoduck@users.noreply.gitgud.io> Date: Sun, 29 Jun 2025 14:49:18 -0400 Subject: [PATCH 1/2] refactor(.gitignore): ignore config files Added configuration files to gitignore due to the likely hood they will be modified. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index b64a0f5..41486c2 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,10 @@ server/uploads/ target/ dev_utils/execute_assembly_net48_test/obj/* +# Configuration Files +server/admin_web_ui/.env +implant/nim.cfg + # Node.js / Electron node_modules/ *.tsbuildinfo From 61272b06e505cbdc36e1638826b1503ba5879cc0 Mon Sep 17 00:00:00 2001 From: "Anoduck, The Anonymous Duck" <11767-anoduck@users.noreply.gitgud.io> Date: Sun, 29 Jun 2025 14:58:58 -0400 Subject: [PATCH 2/2] refactor: renamed config files appended ".example" to configuration files This will require adding installation instructions to copy these files to their appropriate respective names. --- implant/{nim.cfg => nim.cfg.example} | 0 server/admin_web_ui/{.env => .env.example} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename implant/{nim.cfg => nim.cfg.example} (100%) rename server/admin_web_ui/{.env => .env.example} (100%) diff --git a/implant/nim.cfg b/implant/nim.cfg.example similarity index 100% rename from implant/nim.cfg rename to implant/nim.cfg.example diff --git a/server/admin_web_ui/.env b/server/admin_web_ui/.env.example similarity index 100% rename from server/admin_web_ui/.env rename to server/admin_web_ui/.env.example