Files
Meister-Eder/.gitignore
T
Claude e204e29b09 chore: add .chainlit/ to .gitignore
Chainlit auto-generates this directory at runtime (translations, config).
It should not be tracked in version control.

https://claude.ai/code/session_01SUWzMzFvSfWiHXA2p6rPg9
2026-02-22 07:43:02 +00:00

31 lines
325 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
# Virtual environments
.venv/
venv/
env/
# Environment / secrets
.env
# Agent data (conversations and registrations stored at runtime)
data/
# Chainlit runtime (auto-generated; not authored)
.chainlit/
# IDE
.idea/
.vscode/
*.swp
*.swo