feat: Initial OPHION structure

- Go backend with Fiber framework
- Agent for metrics collection
- Docker Compose for self-hosted
- Auth middleware (JWT + API Keys)
- Rate limiting
- Install script
This commit is contained in:
2026-02-05 21:35:47 -03:00
parent 268ff690df
commit 5b662cf12f
8 changed files with 449 additions and 0 deletions

9
go.mod Normal file
View File

@@ -0,0 +1,9 @@
module github.com/bigtux/ophion
go 1.22
require (
github.com/gofiber/fiber/v2 v2.52.0
github.com/shirou/gopsutil/v3 v3.24.1
github.com/golang-jwt/jwt/v5 v5.2.0
)