From 87c32b92a32b230a181bd2e97f59b540675b53c4 Mon Sep 17 00:00:00 2001 From: Sam Jage Date: Fri, 27 Mar 2026 21:34:58 -0400 Subject: [PATCH] gitignore .gitignore and remove build artifacts --- .gitignore | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5dfc72b --- /dev/null +++ b/.gitignore @@ -0,0 +1,54 @@ +@" +# Python +__pycache__/ +*.py[cod] +*.so +.Python +*.egg-info/ +dist/ +build/ +*.spec + +# PyInstaller +*.manifest +*.pyd + +# WiX build outputs +*.wixobj +*.wixpdb +*.msi +*.cab +UplinkManager.wixobj +UplinkManager.wixpdb + +# Logs and databases +*.log +*.sqlite +*.sqlite3 +*.db + +# User data (if you don't want to track local test data) +nat_builds.json +nat_settings.json +logs/ + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +Thumbs.db +ehthumbs.db +*.swp +*.swo + +# IDE +.vscode/ +.idea/ +*.sublime-* + +# Temporary files +*.tmp +*.temp +"@ | Out-File -FilePath ".gitignore" -Encoding utf8 \ No newline at end of file