From 4dcd74260691f5507db3033c557ef684d7b31755 Mon Sep 17 00:00:00 2001 From: Payer Date: Mon, 1 Jun 2026 09:54:48 +0200 Subject: [PATCH] gitignore richtig gestellt --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4b67421 --- /dev/null +++ b/.gitignore @@ -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