Some checks failed
Build Push and Restart Compose / deploy (push) Failing after 11m20s
- `/templates/pages/asset.html`, `/templates/pages/autotrade.html` HTML 템플릿 삭제. - `/static/js/asset.js`, `/static/js/autotrade.js` 클라이언트 스크립트 제거. - 관련 함수 및 초기화 로직 삭제 (자산 조회 및 자동매매 기능 비활성화).
25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
APP_ENV=development
|
|
SERVER_PORT=8080
|
|
|
|
# 키움증권 Open API+ 키 (https://apiportal.koreainvestment.com 에서 발급)
|
|
KIWOOM_APP_KEY=your_app_key_here
|
|
KIWOOM_APP_SECRET=your_app_secret_here
|
|
KIWOOM_BASE_URL=https://openapi.koreainvestment.com:9443
|
|
|
|
# 캐시 설정
|
|
CACHE_TTL_SECONDS=1
|
|
|
|
# WebSocket 설정
|
|
WS_MAX_CLIENTS=100
|
|
WS_POLL_INTERVAL_MS=1000
|
|
|
|
# CORS 설정 (SvelteKit 개발 서버용, 프로덕션에서는 비워둠)
|
|
CORS_ORIGIN=http://localhost:5173
|
|
|
|
# 관리자 계정
|
|
ADMIN_ID=admin
|
|
ADMIN_PASSWORD=
|
|
|
|
# PostgreSQL (미설정 시 메모리 모드)
|
|
DATABASE_URL=postgres://postgres:password@localhost:5432/stocksearch?sslmode=disable
|