mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
* Adds Kubernetes sandbox provisioner support * Improves Docker dev setup by standardizing host paths Replaces hardcoded host paths with a configurable root directory, making the development environment more portable and easier to use across different machines. Automatically sets the root path if not already defined, reducing manual setup steps.
72 lines
716 B
Plaintext
72 lines
716 B
Plaintext
.env
|
|
Dockerfile
|
|
.dockerignore
|
|
.git
|
|
.gitignore
|
|
docker/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.venv/
|
|
|
|
# Web
|
|
node_modules
|
|
npm-debug.log
|
|
.next
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
conf.yaml
|
|
web/
|
|
docs/
|
|
examples/
|
|
assets/
|
|
tests/
|
|
*.log
|
|
|
|
# Exclude directories not needed in Docker context
|
|
# Frontend build only needs frontend/
|
|
# Backend build only needs backend/
|
|
scripts/
|
|
logs/
|
|
docker/
|
|
skills/
|
|
frontend/.next
|
|
frontend/node_modules
|
|
backend/.venv
|
|
backend/htmlcov
|
|
backend/.coverage
|
|
*.md
|
|
!README.md
|
|
!frontend/README.md
|
|
!backend/README.md
|