From 61ba8aae1d20098abf4d0c8c60298bfb1c1a043f Mon Sep 17 00:00:00 2001 From: Godopu Date: Sat, 20 Jun 2026 14:43:22 +0000 Subject: [PATCH] chore(.gitignore): exclude .env + .env.* with .env.example carve-out Secures the workspace against accidental commits of: - .env (skill env overrides, may contain secrets) - .env.* (any env variant) - except .env.example (committable template, can be added later) Includes Korean comment noting secrets policy. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index f585d27..fca3481 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,11 @@ test-sessions*.yaml.lock __pycache__/ *.pyc +# 로컬 환경변수 (secrets — 절대 커밋 금지) +.env +.env.* +!.env.example + # 빌드/배포 HTML 산출물 skills/tmux-agent-orchestrate-delegate-job/USER_MANUAL.html skills/tmux-agent-orchestrate-delegate-job/mqtt-broker-setup.html \ No newline at end of file