You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
EMWebApi/.dockerignore

32 lines
306 B

# Python
__pycache__/
*.py[cod]
*.egg-info/
# 虚拟环境
.venv/
venv/
# 环境变量与密钥
.env
.env.*
!.env.example
*.pem
*.key
# 测试/构建产物
.pytest_cache/
.coverage
coverage.xml
htmlcov/
# git / IDE
.git/
.gitignore
.vscode/
.idea/
.DS_Store
# 容器内不需要的目录
docs/
tests/