flow / .dockerignore
victordibia's picture
Deploy 2026-01-26 07:50:36
034c2ac
# This file is relative to the build context (repo root)
# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv
ENV
.eggs
*.egg-info
dist
build
# Testing/Dev
.pytest_cache
.coverage
htmlcov
.mypy_cache
.ruff_cache
.pyright
# IDE
.vscode
.idea
*.swp
*.swo
# Frontend source (built files are already in src/flow/ui/ui/)
app/frontend/node_modules
app/frontend/src
app/frontend/*.json
app/frontend/*.ts
app/frontend/*.js
app/frontend/*.md
app/frontend/.vite
# Docs and deploy folder itself
docs
deploy
# Local env files (pass via docker env instead)
.env
.env.*
!.env.example
# Tests (not needed in production)
tests