5f8f6287f8
添加基础项目结构,包括页面、组件和配置文件 实现金币价格展示和价格走势图功能 添加筛选功能支持按区服和阵营筛选
64 lines
604 B
Plaintext
64 lines
604 B
Plaintext
# Python
|
|
*.pyc
|
|
__pycache__/
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
.tox/
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.pytype/
|
|
*.so
|
|
node_modules/
|
|
weixin/node_modules
|
|
# Editor directories and files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
*.log.*
|
|
log/
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/ |