factuges-document-signing-s.../.dockerignore

60 lines
859 B
Plaintext
Raw Normal View History

2026-01-30 10:36:16 +00:00
# ----------------------------
# Python
# ----------------------------
__pycache__/
2026-01-22 10:37:35 +00:00
*.pyc
*.pyo
*.pyd
2026-01-30 10:36:16 +00:00
*.py[cod]
*.egg-info/
.eggs/
.pytest_cache/
.mypy_cache/
# Virtual environments (local only)
.venv/
venv/
env/
# ----------------------------
# Environment & secrets
# ----------------------------
.env
.env.*
*.pem
*.key
*.crt
*.pfx
*.p12
# ----------------------------
# Git
# ----------------------------
.git/
2026-01-22 10:37:35 +00:00
.gitignore
2026-01-30 10:36:16 +00:00
# ----------------------------
# Docker
# ----------------------------
Dockerfile
docker-compose.yml
# ----------------------------
# Editor / OS junk
# ----------------------------
.vscode/
.idea/
.DS_Store
Thumbs.db
# ----------------------------
# Docs & local files
# ----------------------------
docs/
*.md
# ----------------------------
# Tests & tooling (si no se usan en runtime)
# ----------------------------
tests/