feat: backend core - auth, user, role, permission, device, webhook, monitoring, cache, repository, service, middleware, API handlers

This commit is contained in:
2026-04-02 11:19:50 +08:00
parent e59a77bc49
commit dcc1f186f8
298 changed files with 62603 additions and 0 deletions

62
.gitignore vendored Normal file
View File

@@ -0,0 +1,62 @@
# Binaries
bin/
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Dependency directories
vendor/
# Go workspace file
go.work
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Build
build/
dist/
# Database
data/*.db
data/*.db-shm
data/*.db-wal
data/jwt/*.pem
# Logs
logs/*.log
*.log
# Local caches and temp artifacts
.cache/
.tmp/
.gocache/
.gomodcache/
frontend/admin/.cache/
frontend/admin/playwright-report/
# OS
.DS_Store
Thumbs.db
# Environment
.env
.env.local
# Node modules
node_modules/
# NPM cache
frontend/admin/.npm-cache/