Sentrinet is a full-stack network intelligence platform that brings together real-time scanning, monitoring, and analytics for modern infrastructure.
It uses a modular Golang backend, a Next.js frontend, and Prometheus metrics collection—deployed with Render and Vercel, with continuous delivery through GitHub Actions.
Sentrinet helps detect network activity, schedule automated scans, and visualize metrics in real time.
It is designed for security engineers, DevOps teams, and researchers who need fast and reliable insights into distributed systems.
| Layer | Technology |
|---|---|
| Frontend | Next.js 14 • TypeScript • TailwindCSS |
| Backend | Golang • Clean architecture in /internal modules |
| Database | SQLite (default) |
| Metrics | Prometheus |
| Deployments | Render (backend) • Vercel (frontend) |
| CI/CD | GitHub Actions (auto-deploy on push to main) |
git clone https://github.com/KuberTheGreat/sentrinet.git
cd sentrinetcd backend
go mod tidy
go run ./server/main.goDefault port: http://localhost:8080
cd frontend/sentriface
npm install
npm run devFrontend: http://localhost:3000
The repository uses GitHub Actions to automatically deploy both the backend and frontend whenever new commits are pushed to the main branch.
Required Secrets
Add these in GitHub → Settings → Secrets and variables → Actions:
| Secret | Description |
|---|---|
| RENDER_API_KEY | Add these in GitHub → Settings → Secrets and variables → Actions: |
| VERCEL_TOKEN | Your Render API key (from Render dashboard → API Keys) |
- User registers through
/register - Backend returns a JWT token
- Token stored in browser by
AuthContext authFetchautomatically attaches token for protected requests- 401 responses trigger auto logout
- 🔐 Secure authentication and session handling
- 🧩 Modular Go backend for easy scaling
- 📡 Real-time network scan scheduling
- 📊 Prometheus metrics endpoint (
/metrics) - 💅 Clean Next.js + TailwindCSS frontend
- ⚙️ Full CI/CD via GitHub Actions
- 🚀 One-click deployments on Render and Vercel
- Prometheus configured through
backend/prometheus.yml - Exposes live metrics at
/metrics - Compatible with Grafana dashboards