@xfilecom/xframe 0.1.15 → 0.1.17

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": "@xfilecom/xframe",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Scaffold full-stack app: Nest + @xfilecom/backend-core, Vite/React + @xfilecom/front-core",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {
@@ -17,9 +17,9 @@ http:
17
17
  database:
18
18
  host: 127.0.0.1
19
19
  port: 3306
20
- user: root
21
- password: ''
22
- name: app
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
- # 운영·공개망에서는 false 권장 (임의 SQL·대량 조회 노출 방지). 로컬 개발만 true.
36
+ # 스캐폴드 기본 true (로컬에서 바로 호출 가능). 배포·공개망에서는 false 로 끄세요.
37
37
  sqlEndpoint:
38
- enabled: false
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` 일 때만 동작. **템플릿 기본은 `false`** (운영·공개망에서는 끄는 것을 권장). 로컬에서 동적 조회를 쓰려면 `true` 로 켜고 `core.database.auto: true` 와 `database.*` 맞춥니다.
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