로컬(개발)용과 운영용 설정분리

This commit is contained in:
2025-12-28 13:45:41 +09:00
parent a871ec8008
commit 716f4f8791
15 changed files with 661 additions and 368 deletions

15
.env.example Normal file
View File

@@ -0,0 +1,15 @@
# 환경 설정
# development: 로컬 개발 (스케줄러 수동)
# production: 운영 서버 (스케줄러 자동)
NODE_ENV=development
# PostgreSQL 연결 정보
DB_HOST=localhost
DB_PORT=5432
DB_NAME=osolit_monitor
DB_USER=postgres
DB_PASSWORD=your_password
# 스케줄러 자동시작 여부 (true/false)
# 생략 시: production=true, development=false
AUTO_START_SCHEDULER=false