From 991794ed3d51f998df0272b86a42eae0fea1d0b0 Mon Sep 17 00:00:00 2001 From: Joel Krauska Date: Mon, 3 Nov 2025 15:00:05 -0800 Subject: [PATCH] ignore other database files --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.gitignore b/.gitignore index 7260145..6812cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,12 +3,41 @@ __pycache__/* meshview/__pycache__/* alembic/__pycache__/* meshtastic/protobuf/* + +# Database files packets.db +packets*.db +*.db +*.db-shm +*.db-wal + +# Process files meshview-db.pid meshview-web.pid + +# Config and logs /table_details.py config.ini +*.log + +# Screenshots screenshots/* + +# Python python/nanopb __pycache__/ *.pyc +*.pyo +*.pyd +.Python + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db