From 2a256405356525db19362c4efae9449ed86f7568 Mon Sep 17 00:00:00 2001 From: hbyang Date: Thu, 5 Mar 2026 15:35:57 +0900 Subject: [PATCH] Remove .env from tracking and add to .gitignore --- .env | 15 --------------- .gitignore | 4 ++++ 2 files changed, 4 insertions(+), 15 deletions(-) delete mode 100644 .env create mode 100644 .gitignore diff --git a/.env b/.env deleted file mode 100644 index 6201774..0000000 --- a/.env +++ /dev/null @@ -1,15 +0,0 @@ -# 백엔드 내부 API (Docker 네트워크 내부 URL) -BACKEND_INTERNAL_URL=http://localhost:8000 - -# 내부 인증 키 (백엔드 .env의 INTERNAL_SECRET_KEY와 동일하게 설정) -INTERNAL_SECRET_KEY=ado2-internal-backend-server-secret-key - -# MySQL 설정 (백엔드와 동일한 DB) -MYSQL_HOST=localhost -MYSQL_PORT=3306 -MYSQL_USER=root -MYSQL_PASSWORD=1234 -MYSQL_DB=castad_test1 - -# 체크 주기 (분) -CHECK_INTERVAL_MINUTES=1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc36f7d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.env +__pycache__/ +*.pyc +.venv/