18 lines
310 B
Plaintext
18 lines
310 B
Plaintext
|
# 개발 환경 설정 예시
|
||
|
# Windows 개발환경용 MariaDB/MySQL 연결 설정
|
||
|
DB_HOST=localhost
|
||
|
DB_PORT=3306
|
||
|
DB_USER=root
|
||
|
DB_PASSWORD=
|
||
|
DB_NAME=jaryo
|
||
|
|
||
|
# NAS 배포 환경
|
||
|
NODE_ENV=development
|
||
|
DEPLOY_ENV=local
|
||
|
|
||
|
# 서버 설정
|
||
|
HOST=0.0.0.0
|
||
|
PORT=3000
|
||
|
|
||
|
# 세션 설정
|
||
|
SESSION_SECRET=your-session-secret-here
|