mirror of
https://github.com/samjage/Uplink-Manager.git
synced 2026-06-06 00:40:42 +00:00
87c32b92a3
.gitignore and remove build artifacts
54 lines
579 B
Plaintext
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 |