mobile download

This commit is contained in:
Macbook
2026-05-28 14:44:19 +09:00
parent e2816b037f
commit 3503ef33f5
152 changed files with 11021 additions and 687 deletions
@@ -104,12 +104,20 @@ goldenchart:
upload-dir: ${GC_VERIFICATION_UPLOAD_DIR:data/verification-images}
max-image-size-mb: 5
max-images-per-issue: 30
mobile-app:
release-dir: ${GC_MOBILE_APP_RELEASE_DIR:data/mobile-releases}
version: ${GC_MOBILE_APP_VERSION:}
# QR·APK 다운로드 절대 URL (로컬 개발 시에도 exdev 서버 APK 사용)
public-base-url: ${GC_MOBILE_APP_PUBLIC_BASE_URL:http://exdev.co.kr}
cors:
allowed-origins:
- http://localhost:5173
- http://localhost:5174
- http://localhost:3000
- http://localhost:80
- http://localhost
- capacitor://localhost
- https://localhost
# Firebase FCM (서비스 계정 JSON: classpath:firebase-service-account.json)
firebase:
@@ -0,0 +1,3 @@
-- 전략편집기 flow layout (START 분봉·노드 좌표·orphans 등) — localStorage 대신 DB 단일 소스
ALTER TABLE gc_strategy
ADD COLUMN flow_layout_json JSON NULL COMMENT '전략편집기 UI 상태 {buy,sell}' AFTER sell_condition_json;
@@ -0,0 +1,5 @@
-- UI·편집기·가상투자 등 클라이언트 설정 (localStorage 대체)
ALTER TABLE gc_app_settings
ADD COLUMN ui_preferences_json JSON NULL
COMMENT '프론트 UI 설정 통합 JSON'
AFTER trend_search_settings_json;