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 +1 -1
- package/template/.env.example +6 -0
- package/template/entities/System/Address/addr_dong.json +2 -10084
- package/template/entities/System/Address/addr_sido.json +1 -20
- package/template/entities/System/Address/addr_sigungu.json +2 -1372
- package/template/entities/System/Address/defaults/addr_dong.defaults.json +10082 -0
- package/template/entities/System/Address/defaults/addr_sido.defaults.json +70 -0
- package/template/entities/System/Address/defaults/addr_sigungu.defaults.json +1370 -0
- package/template/entities/System/Auth/account.json +28 -55
- package/template/entities/System/Auth/anon_device.json +0 -14
- package/template/entities/System/Auth/defaults/account.defaults.json +50 -0
- package/template/entities/System/Auth/defaults/license.defaults.json +6 -0
- package/template/entities/System/Auth/defaults/rbac_roles.defaults.json +62 -0
- package/template/entities/System/Auth/license.json +1 -7
- package/template/entities/System/Auth/rbac_roles.json +1 -61
- package/template/entities/System/Storage/file_backup_log.json +8 -2
- package/template/entities/System/Storage/file_download_log.json +2 -1
- package/template/entities/System/{Backup/backup_log.json → backup_log.json} +13 -3
- package/template/entities/defaults/goods.defaults.json +14 -0
- package/template/entities/goods.json +6 -16
- package/template/scripts/run.sh +17 -2
package/package.json
CHANGED
package/template/.env.example
CHANGED
|
@@ -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
|