nex_docus/backend/.dockerignore

51 lines
424 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual Environment
venv/
env/
ENV/
.venv
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
# Logs
logs/
*.log
# Database
*.db
*.sqlite
# OS
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
# Project specific
storage/
temp/
data/
# Environment避免把本地数据库/Redis 配置和明文密码打进镜像)
.env
.env.*