From e0e77c4f8e5f5b5ac564d38dbc60ae3fe0baa5c7 Mon Sep 17 00:00:00 2001 From: kfox Date: Thu, 25 Dec 2025 20:16:38 -0500 Subject: [PATCH] Initial commit: Add .gitignore --- .gitignore | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..27e8d698 --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +env/ +ENV/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Environment +.env +.env.local + +# Database +*.db +*.sqlite +*.sqlite3 + +# Logs +*.log +logs/ + +# Data +data/historical/* +!data/historical/.gitkeep + +# AppImage +*.AppImage + +# OS +.DS_Store +Thumbs.db + +# Testing +.pytest_cache/ +.coverage +.coverage.* +coverage.xml +htmlcov/ + +# Packaging +packaging/AppDir/ +*.AppImage