Files
AetherForge/.gitignore
AetherForge ea504b83e2 fix: six maintenance fixes across LAUNCH.bat, config, go.mod, and gitignore
- LAUNCH.bat (root + usb): add :server_launch fast-path so server always
  starts even when Go is not found; only obfuscation tools are skipped
- LAUNCH.bat (root + usb): fix misleading echo -- credentials are printed
  by AetherForge.exe itself, not by the batch script
- usb/data/config.json: correct SupportXMR TLS port (3333->443) and add
  MoneroOcean and HeroMiners backup pool entries
- server/go.mod: bump go directive from 1.25.0 to 1.26.3 to match bundled
  toolchain version used by LAUNCH.bat and pack-usb.bat
- pack-usb.bat: replace four Unicode em-dash characters (U+2014) with plain
  ASCII hyphens to avoid garbled output on non-UTF-8 code pages
- .gitignore: add _err.txt, _out.txt, and _*.txt pattern to suppress
  recurring untracked temp debug files in repo root
2026-06-01 21:40:06 -07:00

66 lines
1.0 KiB
Plaintext

# Binaries
/bin/
*.exe
!devrun.bat
# Data (runtime)
/data/*.db
/data/*.db-shm
/data/*.db-wal
/data/builds/
/data/logs/
/data/config.json
/server/data/
# Go
/server/miner-server.exe
/server/miner-server.exe~
# Frontend
/server/web/node_modules/
/server/web/dist/
/server/webroot/
/server/web/test-results/
/server/web/playwright-report/
# IDE / OS
.idea/
.vscode/
*.swp
Thumbs.db
Desktop.ini
# Temp
-p/
*.log
*.rar
delete
query
_err.txt
_out.txt
_*.txt
# Accidental empty placeholder (breaks go build if committed)
/server/internal/ollama/main.go
# Broken accidental directory (cmd "..." path expansion)
/server/.../
/fusion-deliverables/
# Prebuilt agent/fusion binaries — compiled on demand, not tracked in git
/agent/crypto-miner-agent
/fusion/crypto-miner-fusion
# Portable USB bundle — track LAUNCH.bat only; runtime output stays local
/usb/*
!/usb/LAUNCH.bat
*.msi
/cloudflared-windows-amd64.msi
# Local build / test output (not tracked)
/spread-kits/
/server/coverage
/server/builder_cov
/server/internal/builder/cov
/server/*cov*