18 lines
620 B
Plaintext
18 lines
620 B
Plaintext
# 로컬 전용 — backend/.env 로 복사 후 사용 (서버시작.bat 이 자동 갱신)
|
|
# 모든 경로는 프로젝트 루트(EENE_Dashboard_0608) 기준
|
|
|
|
# DB — data/postgres (포트 54320)
|
|
DATABASE_URL="postgresql://eee_admin:eee_password@localhost:54320/eee_dashboard"
|
|
|
|
PORT=4000
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
JWT_SECRET=change_this_secret_in_production
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# 첨부 — uploads/ (프로젝트 루트, 파일 크기 상한 없음 — 디스크 여유만큼)
|
|
UPLOAD_DIR=../uploads
|
|
|
|
# HR seed — data/seed/hr-data.json (최초 seed·import-hr 공통)
|
|
HR_DATA_PATH=../data/seed/hr-data.json
|