mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 15:34:16 +08:00
- 桌面入口: desktop.py (单实例锁 + 端口探测 + uvicorn + pywebview 窗口) - 配置层: config.py 加 sys.frozen 检测, frozen 下 data_dir 指向用户目录 - 系统通知: notify_adapter.py 三平台 (Win winotify / mac osascript / Linux notify-send) 接入 quote_service 告警出口, preferences 开关控制, 前端监控设置加 toggle - 前端: 监控设置加系统通知开关, 系统设置加检查更新入口 - 打包: packaging/tickflow.spec (onedir, collect-all 原生库, 排除 vectorbt) - CI: .github/workflows/release.yml 手动触发 + 平台可选 (windows/macos/linux) - 依赖: platformdirs/winotify/plyer 入主依赖, pywebview 入 desktop extras - README 加桌面客户端下载章节 - bump 版本号到 0.1.33
99 lines
1.6 KiB
Plaintext
99 lines
1.6 KiB
Plaintext
# ===== Python =====
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.python-version
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# ===== uv =====
|
|
.uv/
|
|
|
|
# ===== Node / pnpm =====
|
|
node_modules/
|
|
.pnpm-store/
|
|
.pnpm-debug.log*
|
|
.npm/
|
|
*.log
|
|
|
|
# ===== Vite =====
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
backend/static/
|
|
backend/app/static/
|
|
|
|
# ===== IDE =====
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# ===== Project data (Parquet/DuckDB) =====
|
|
backend/data/**
|
|
!backend/data/.gitkeep
|
|
data/**
|
|
!data/.gitkeep
|
|
# 扩展数据: 只跟踪 config.json(表结构), 其他数据文件一律忽略
|
|
# 注意 gitignore 否定规则特性: 需先放行目录才能放行内部文件
|
|
!data/ext_data/
|
|
data/ext_data/**
|
|
!data/ext_data/**/config.json
|
|
|
|
# ===== Secrets =====
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env
|
|
|
|
# ===== User-derived prompts =====
|
|
backend/user_prompts/
|
|
|
|
# ===== Browser automation =====
|
|
.playwright-mcp/
|
|
|
|
# ===== AI IDE =====
|
|
.trae/
|
|
|
|
# ===== TypeScript build cache =====
|
|
frontend/tsconfig*.tsbuildinfo
|
|
|
|
# ===== Data files =====
|
|
*.xlsx
|
|
|
|
# ===== Private deploy / 服务器私有信息(不开源) =====
|
|
DEPLOY.md
|
|
deploy.sh
|
|
|
|
# ===== 内部设计文档(不开源) =====
|
|
DESIGN.md
|
|
DESIGN-proposal.md
|
|
CLAUDE.md
|
|
|
|
# ===== 私人脚本(不开源) =====
|
|
docs/zhihu/
|
|
|
|
# ===== 用户自定义策略(私有,不开源) =====
|
|
data/strategies/custom/
|
|
|
|
# ===== 临时 / 调试产物 =====
|
|
backend._recheck*.py
|
|
backend/_verify*.py
|
|
backend/_desktop_run.log
|
|
|
|
# ===== 打包产物 (本地构建的安装包,不入库) =====
|
|
backend/TickFlowStockPanel-win-x64.zip
|
|
backend/TickFlowStockPanel-macos.zip
|
|
backend/TickFlowStockPanel-linux-x64.tar.gz
|