Initial commit: Wake-on-LAN Manager mit Go und Web-Oberfläche

This commit is contained in:
2025-08-21 13:36:43 +02:00
commit f015e845a9
13 changed files with 1407 additions and 0 deletions

48
.gitignore vendored Normal file
View File

@ -0,0 +1,48 @@
# Go binaries
*.exe
*.exe~
*.dll
*.so
*.dylib
# Go test binary, built with `go test -c`
*.test
# Go coverage tool, specifically for Go 1.10+
*.out
# Go workspace file
go.work
# Database files
*.db
*.sqlite
*.sqlite3
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Log files
*.log
# Environment files
.env
.env.local
.env.*.local
# Temporary files
tmp/
temp/