项目目录从 refer 迁移到 local

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-04 16:32:48 +08:00
parent 648a8b7f1c
commit aad34202f1
302 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Phase 0 单 service:FastAPI 启动后既跑 API 又托管前端 dist。
# 见 ADR-17 / §8.1。
services:
app:
build:
context: .
dockerfile: Dockerfile
args:
BACKEND_EXTRAS: ${BACKEND_EXTRAS:-}
container_name: TickFlow_Stock_Panel
ports:
- "${PORT:-3018}:3018"
env_file:
- .env
volumes:
- ./data:/app/data
- ./tiers.yaml:/app/tiers.yaml:ro
restart: unless-stopped