Files
flowsint/.dockerignore
2025-10-27 11:24:58 +01:00

74 lines
659 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
.eggs/
# Virtual environments
.venv/
venv/
ENV/
env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Git
.git/
.gitignore
.gitattributes
# Documentation
*.md
!README.md
docs/
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.hypothesis/
# Node (for frontend)
flowsint-app/node_modules/
flowsint-app/dist/
flowsint-app/.next/
flowsint-app/out/
flowsint-app/build/
# Environment files
.env.local
.env.*.local
# Logs
*.log
logs/
# Docker
docker-compose*.yml
Dockerfile.dev
.dockerignore
# CI/CD
.github/
.gitlab-ci.yml
# Misc
*.bak
*.tmp
temp/
tmp/