From 3cc6efdd09a86e0c7c0761f079fae7155d8bca7b Mon Sep 17 00:00:00 2001 From: James Date: Fri, 22 Nov 2024 13:58:33 +1000 Subject: [PATCH] Create .gitignore --- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc3deda --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# Virtual Environment +venv/ +env/ +.env + +# IDEs and Editors +.vscode/ +.idea/ +*.swp +*.swo + +# OS generated files +.DS_Store +Thumbs.db + +# Logs +*.log + +# Model files (if they're large, you might want to exclude them) +*.gguf + +# Distribution / packaging +dist/ +build/ +*.egg-info/ + +# Jupyter Notebook +.ipynb_checkpoints + +# Other +*.bak +*.tmp