chore: remove junk files, update .gitignore for temp dirs and archives

This commit is contained in:
ospab 2026-05-15 18:27:45 +03:00
parent 9e4c96afda
commit 52862b9eae
5 changed files with 17 additions and 6 deletions

17
.gitignore vendored
View File

@ -1,16 +1,33 @@
/target/ /target/
/target_build/ /target_build/
/target_linux/
/dist/ /dist/
**/*.rs.bk **/*.rs.bk
.idea/ .idea/
.vscode/ .vscode/
# Binaries & libraries
*.exe *.exe
*.dll *.dll
*.so *.so
*.dylib *.dylib
*.pdb *.pdb
# Archives & temp extraction folders
*.zip
*_temp/
*_new/
# Local scripts & test artifacts
test_route.ps1
# Config & secrets
config.json config.json
wintun.dll wintun.dll
# Logs
*.log *.log
# Dev notes (not for repo)
.ai-rules.md .ai-rules.md
turn-harvesting-idea.md turn-harvesting-idea.md

View File

@ -1,6 +0,0 @@
$remote_ip = '138.124.241.18'
$route = Get-NetRoute -DestinationPrefix '0.0.0.0/0' | Sort-Object RouteMetric | Select-Object -First 1
$gw = $route.NextHop
$ifIndex = $route.InterfaceIndex
Write-Host "Found route via $gw (interface $ifIndex)"
New-NetRoute -DestinationPrefix "$remote_ip/32" -NextHop $gw -InterfaceIndex $ifIndex -RouteMetric 1

Binary file not shown.

Binary file not shown.

Binary file not shown.