92 lines
993 B
Text
92 lines
993 B
Text
# Python Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Python Cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# IDE & Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# Environment Variables (SECRETS!)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.key
|
|
*.pem
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
*.log.*
|
|
eugen.log
|
|
api_debug.log
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.hypothesis/
|
|
|
|
# IDE Temp Files
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Chat History (optional - keep für Backup, aber nicht unbedingt committen)
|
|
# Wenn ihr die History NICHT committen wollt, uncomment:
|
|
# data/conversations/
|
|
# data/config.json
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.temp
|
|
*~
|
|
.~lock.*
|
|
|
|
# OS Specific
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|