From 82042c980626c83b9e21d03a0f042331482a32b0 Mon Sep 17 00:00:00 2001 From: shinalok Date: Mon, 31 Aug 2026 14:53:00 +0900 Subject: [PATCH] Remove example*.py from version control (leaked API keys) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit example_async_kiwoom.py / example_async_v1.py / example_v1.py에 실제 APP_KEY/APP_SECRET 값이 하드코딩되어 있던 것을 뒤늦게 발견. 정리 후 다시 올릴 예정이라 우선 git 추적에서 제외(로컬 파일은 유지). 이어서 과거 히스토리에서도 완전히 제거함. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01225Lu4Fc2UpMz6QixEcNT8 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index b5b159b..209da59 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,9 @@ venv/ # 로컬 전용 문서 (원격 저장소에는 올리지 않음) doc/ +# 실키/시크릿이 하드코딩된 적이 있어 정리 후 다시 올릴 예정 (원격 저장소에는 올리지 않음) +example*.py + # --- JetBrains 공식 .gitignore 파일 명세 --- # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839