Files
auv/.gitignore
T
Sakurasan d5516b72d7 feat: 接入同花顺官方SDK,新增v2数据接口,股票详情K线改用v2(前复权日K)
- vendor 同花顺官方 SDK 到 backend/sdk(含K线>10年自动切片、重试、拼音首字母检索兜底)
- 新增 /api/v2 路由:行情/估值/财务/日历/指数/K线/标的检索
- 股票详情页K线改用 v2 同花顺接口(前复权日K+总手+按昨收涨跌幅)
- 密钥仅后端持有,响应/日志无泄露
- 新增 run_local.sh 本地直接拉起(不再依赖 docker)
2026-08-28 02:09:49 +08:00

125 lines
1.2 KiB
Plaintext
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 通用
*.log
*.tmp
*.temp
*.swp
*.swo
*.bak
*.orig
# 数据库文件
*.db
*.sqlite
*.sqlite3
# 环境变量与密钥
.env
.env.local
.env.*.local
*.pem
*.key
# 系统文件
.DS_Store
Thumbs.db
# 编辑器与 IDE
.idea/
.vscode/
# Node.js / JavaScript / TypeScript
node_modules/
dist/
build/
.next/
.nuxt/
.cache/
coverage/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
.venv/
venv/
env/
ENV/
pip-wheel-metadata/
*.egg-info/
.coverage
htmlcov/
# Mobile build outputs
*.apk
*.aab
*.ipa
*.xarchive
# Java / Kotlin
target/
*.class
*.jar
*.war
*.ear
.gradle/
out/
# Go
bin/
*.test
coverage.out
# C / C++
*.o
*.obj
*.so
*.a
*.lib
*.dll
*.dylib
*.exe
CMakeFiles/
CMakeCache.txt
cmake-build-*/
compile_commands.json
Makefile
# Rust
target/
# C#
*.user
*.suo
*.userosscache
*.sln.docstates
bin/
obj/
# Ruby & PHP / Composer:`/vendor/` 仅忽略仓库根目录下的 vendor(不包含 src/pages/vendor/ 等)
.bundle/
/vendor/
# OneDay 中间产物目录(文件处理时的临时文件,不需要持久化)
tmp/
# other
.meoo
.stats
.config
.accesslog
# 沙箱崩溃, 产生的文件
/core
/.core.hmbtNy
/.core.dump
.v2-demo-backup/