create-entity-server 0.9.12 → 0.9.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-entity-server",
3
- "version": "0.9.12",
3
+ "version": "0.9.14",
4
4
  "description": "Create a new entity-server project in one command — like create-react-app or create-vite.",
5
5
  "keywords": [
6
6
  "entity-server",
@@ -7,6 +7,9 @@
7
7
  # 기본 이메일 도메인 (configs/server.json의 default_email_domain보다 우선)
8
8
  # DEFAULT_EMAIL_DOMAIN=example.com
9
9
 
10
+ # 실행 환경 (configs/server.json의 environment보다 우선: development | production)
11
+ # SERVER_ENVIRONMENT=production
12
+
10
13
  # Entity Server 환경변수 설정 예시
11
14
  # 실제 사용시 이 파일을 .env로 복사하고 값을 변경하세요: cp .env.example .env
12
15
  # ./scripts/generate-env-keys.sh 를 사용하여 랜덤 시크릿을 생성할 수 있습니다.
@@ -24,6 +27,9 @@ JWT_SECRET=your-jwt-secret-here
24
27
  # 비워두면 암호화 비활성화. 설정 시 충분한 길이의 랜덤 문자열 권장.
25
28
  # BACKUP_ENCRYPT_KEY=your-backup-encryption-key-here
26
29
 
30
+ # 사용할 DB 그룹 (database.json의 default보다 우선: development | production)
31
+ # DB_GROUP=production
32
+
27
33
  # 개발 환경 DB 설정 (database.json의 ${ENV_VAR}와 매핑)
28
34
  DB_HOST_DEVELOPMENT=127.0.0.1
29
35
  DB_PORT_DEVELOPMENT=3306