支持Docker容器化部署; 分离预设资源和自定义资源;
This commit is contained in:
69
.dockerignore
Normal file
69
.dockerignore
Normal file
@@ -0,0 +1,69 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
*.egg
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# Documentation
|
||||
docs/
|
||||
*.md
|
||||
!README.md
|
||||
|
||||
# Plans and development files
|
||||
plans/
|
||||
repositories/
|
||||
examples/
|
||||
|
||||
# Test files
|
||||
test_*.py
|
||||
tests/
|
||||
*.log
|
||||
|
||||
# Output and temporary files
|
||||
output/*
|
||||
!output/.gitkeep
|
||||
temp/
|
||||
*.tmp
|
||||
|
||||
# User data (will be mounted)
|
||||
data/users/*
|
||||
!data/.gitkeep
|
||||
|
||||
# Config (will be mounted)
|
||||
config.yaml
|
||||
config.yaml.bak
|
||||
config.example.yaml
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Misc
|
||||
*.bak
|
||||
restart_web.sh
|
||||
start_web.sh
|
||||
|
||||
Reference in New Issue
Block a user