@xfilecom/xframe 0.1.15 → 0.1.16
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
|
@@ -17,9 +17,9 @@ http:
|
|
|
17
17
|
database:
|
|
18
18
|
host: 127.0.0.1
|
|
19
19
|
port: 3306
|
|
20
|
-
user:
|
|
21
|
-
password:
|
|
22
|
-
name:
|
|
20
|
+
user: xfilecom
|
|
21
|
+
password: milk1209
|
|
22
|
+
name: usdt-market-place
|
|
23
23
|
ssl: false
|
|
24
24
|
connectionLimit: 10
|
|
25
25
|
|
|
@@ -33,9 +33,9 @@ cors:
|
|
|
33
33
|
core:
|
|
34
34
|
# true: GET /api/:resource/:action → sql.ts 의 endpointSqlQueries
|
|
35
35
|
# POST /api/:resource/list, POST /api/database → pageable 목록 (Drizzle 스키마·컬럼 화이트리스트)
|
|
36
|
-
#
|
|
36
|
+
# 스캐폴드 기본 true (로컬에서 바로 호출 가능). 배포·공개망에서는 false 로 끄세요.
|
|
37
37
|
sqlEndpoint:
|
|
38
|
-
enabled:
|
|
38
|
+
enabled: true
|
|
39
39
|
database:
|
|
40
40
|
# true 시 부팅 시 MySQL 연결 시도, DatabaseService 가 성공/실패 로그 출력 (위 엔드포인트에 필요)
|
|
41
41
|
auto: true
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
## REST `GET /api/:resource/:action` (`endpointSqlQueries`)
|
|
27
27
|
|
|
28
|
-
- `core.sqlEndpoint.enabled: true` 일 때만 동작.
|
|
28
|
+
- `core.sqlEndpoint.enabled: true` 일 때만 동작. **스캐폴드 기본은 `true`** (`application.yml`). 운영·공개망 배포 전에는 `false` 로 끄세요. `core.database.auto: true` 와 `database.*` 도 맞춰야 합니다.
|
|
29
29
|
|
|
30
30
|
## REST `POST /api/:resource/list` — Drizzle 스키마 자동 연동
|
|
31
31
|
|