first commit
This commit is contained in:
68
AIEC-server/.dockerignore
Normal file
68
AIEC-server/.dockerignore
Normal file
@ -0,0 +1,68 @@
|
||||
# Git相关
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Python相关
|
||||
*.py
|
||||
*.pyc
|
||||
__pycache__
|
||||
.pytest_cache
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Node相关(如果有)
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# 编辑器相关
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
|
||||
# 文档
|
||||
*.md
|
||||
README.md
|
||||
LICENSE
|
||||
docs/
|
||||
|
||||
# 测试文件
|
||||
test/
|
||||
tests/
|
||||
*test*
|
||||
*debug*
|
||||
|
||||
# Docker相关
|
||||
Dockerfile
|
||||
docker-compose*.yml
|
||||
.dockerignore
|
||||
|
||||
# 构建脚本
|
||||
*.sh
|
||||
*.bat
|
||||
|
||||
# 临时文件
|
||||
*.tmp
|
||||
*.temp
|
||||
*.log
|
||||
*.bak
|
||||
*.backup
|
||||
*.old
|
||||
|
||||
# 压缩文件
|
||||
*.tar.gz
|
||||
*.zip
|
||||
*.rar
|
||||
|
||||
# 其他不需要的文件
|
||||
server.py
|
||||
.env
|
||||
.env.local
|
||||
Reference in New Issue
Block a user