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