로컬(개발)용과 운영용 설정분리
This commit is contained in:
15
.env.example
Normal file
15
.env.example
Normal 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
|
||||
Reference in New Issue
Block a user