Remove .env from tracking and add to .gitignore

main
hbyang 2026-03-05 15:35:57 +09:00
parent 4de0ccdf87
commit 2a25640535
2 changed files with 4 additions and 15 deletions

15
.env
View File

@ -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

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.env
__pycache__/
*.pyc
.venv/