d1420593f6
Drover-Go is a Discord proxy tool that routes traffic through SOCKS5 via kernel-level packet capture (WinDivert), surviving Discord auto-updates and bypassing the limitations of in-app proxy settings. This commit lays out base project files: - README with architecture overview and acknowledgements - LICENSE MIT - .gitignore for Go + Wails + IDE artifacts - go.mod with module git.okcu.io/root/drover-go on Go 1.23 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
43 lines
517 B
Plaintext
43 lines
517 B
Plaintext
# Build output
|
|
/bin/
|
|
/dist/
|
|
/build/
|
|
*.exe
|
|
*.dll.o
|
|
*.test
|
|
*.out
|
|
|
|
# Wails
|
|
/internal/frontend/node_modules/
|
|
/internal/frontend/dist/
|
|
/internal/frontend/wailsjs/
|
|
.wails/
|
|
|
|
# IDE
|
|
/.idea/
|
|
/.vscode/
|
|
*.iml
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Inno Setup compiled installers (only release artifacts go to the registry)
|
|
/installer/Output/
|
|
*-setup.exe
|
|
|
|
# Logs / dumps
|
|
*.log
|
|
crash.txt
|
|
|
|
# Local config (must not contain secrets, but stay safe)
|
|
/config.local.toml
|
|
|
|
# Coverage
|
|
coverage.out
|
|
coverage.txt
|
|
coverage.html
|