gitignore

This commit is contained in:
2026-05-31 09:29:20 +02:00
parent 488612a95d
commit 15a057a600
+45
View File
@@ -0,0 +1,45 @@
# Secrets
.env
.env.*
!.env.example
# Python cache / bytecode
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
ENV/
# Pipenv
Pipfile.lock
# Logs
*.log
cron.log
ics_importer.log
# Runtime data
imported_uids.txt
# Packaging / build artifacts
build/
dist/
*.egg-info/
.eggs/
# Test / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.mypy_cache/
# Editors / OS files
.vscode/
.idea/
.DS_Store
Thumbs.db