Files
Uplink-Manager/.gitignore
T
admin 87c32b92a3 gitignore
.gitignore and remove build artifacts
2026-03-27 21:34:58 -04:00

54 lines
579 B
Plaintext

@"
# 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