최초커밋

This commit is contained in:
kjs
2025-08-21 09:41:46 +09:00
commit a0e5b57a24
2454 changed files with 1476904 additions and 0 deletions

26
env.development.example Normal file
View File

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