Files
life-echo/.gitignore
iammm0 d104377d26 feat: 优化Docker构建配置,支持生产环境配置文件
- 更新.gitignore,允许.env.production文件被提交(私密仓库)
- 优化Dockerfile构建流程,使用.env.production作为生产环境配置
- 将.env.production复制为.env,确保生产环境使用正确的配置
- 新增.env.production生产环境配置文件
2026-01-23 10:56:59 +08:00

50 lines
520 B
Plaintext
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.
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
# 环境变量
.env
.env.local
# 注意:.env.production 应该被提交(私密仓库)
# 明确排除 .env.production确保它可以被提交
!.env.production
# 数据库文件
*.db
*.sqlite
*.sqlite3
# IDE
.idea/
.vscode/
*.iml
# 临时文件
*.tmp
*.log
*.swp
*.swo
*~
# 提交消息临时文件
commit_msg_*.txt
commit_plan.txt
commit_messages.txt
# 操作系统
.DS_Store
Thumbs.db
# 构建文件
build/
dist/
*.egg-info/