Add .env.production file and update .gitignore to allow it

This commit is contained in:
2025-08-29 16:08:31 +09:00
parent e0aa5eb40c
commit 7078582040
3 changed files with 56 additions and 66 deletions

26
.env.development Normal file
View File

@@ -0,0 +1,26 @@
# wace plm개발환경 설정
# 애플리케이션 환경
NODE_ENV=development
# 데이터베이스 설정
DB_URL=jdbc:postgresql://211.115.91.141:11133/waceplm
DB_USERNAME=postgres
DB_PASSWORD=waceplm0909!!
# PostgreSQL 환경 변수 (내부 DB 사용 시)
POSTGRES_DB=waceplm
POSTGRES_USER=postgres
POSTGRES_PASSWORD=waceplm0909!!
# 애플리케이션 포트
APP_PORT=8090
# JVM 옵션
JAVA_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"
# 로그 레벨
LOG_LEVEL=DEBUG
# 개발 모드 플래그
DEBUG=true