mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
* feat: adds docker-based dev environment * docs: updates Docker command help * fix local dev * feat(sandbox): add Kubernetes-based sandbox provider for multi-instance support * fix: skills path in k8s * feat: add example config for k8s sandbox * fix: docker config * fix: load skills on docker dev * feat: support sandbox execution to Kubernetes Deployment model * chore: rename web service name
71 lines
708 B
Plaintext
71 lines
708 B
Plaintext
.env
|
|
Dockerfile
|
|
.dockerignore
|
|
.git
|
|
.gitignore
|
|
|
|
# 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
|