mirror of
https://github.com/rnvm9wjdtj-bot/myaps_api.git
synced 2026-06-02 05:54:40 +00:00
750e8853f1
1. 修复数据库完整性错误:staging_routers.py 添加 _retry_count 字段默认值 0 2. 时区配置规范化:.env 和 settings.py 使用 IANA 格式(Asia/Shanghai),保持向后兼容 3. Docker 部署优化: - Portainer 禁用 Edge 功能,释放 8000 端口 - Uptime Kuma 和 Portainer 设为默认启动服务 4. 新增部署模板:创建 scripts/deploy_docker/mount 目录结构
107 lines
1.2 KiB
Plaintext
107 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
myaps_api/
|
|
venv/
|
|
env/
|
|
|
|
# Build directories
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# IDE directories and files
|
|
.vscode/
|
|
.idea/
|
|
.arts/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output/
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Microbundle cache
|
|
.rpt2_cache/
|
|
.rts2_cache_cjs/
|
|
.rts2_cache_es/
|
|
.rts2_cache_umd/
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
.env
|
|
|
|
test/
|
|
tests/
|
|
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
|
|
# 环境配置文件
|
|
project_files/**/dev.json
|
|
project_files/**/prod.json
|
|
project_files/**/remind.py
|
|
|
|
# Binlog 位置管理器文件
|
|
.binlog_position.json
|
|
|
|
*.sqlite*
|
|
storage/**/
|
|
|
|
|
|
# 只忽略根目录下的 migrations(通常是 Alembic/Tortoise 自动生成的迁移文件)
|
|
/migrations/
|
|
|
|
offline_packages/
|
|
offline_packages/**/
|
|
|
|
docker_images/
|
|
docker_images/**/
|
|
|
|
entrypoint.sh
|