feat: initial implementation of Oriana uptime monitor
Security Scan and Upload / Security & DefectDojo Upload (push) Failing after 50s

Implements a full-stack uptime monitoring application with:
- HTTPS, HTTPS keyword, HTTPS status, port, and MongoDB Atlas monitor types
- Cron-based monitoring engine with webhook notifications on status changes
- Discord OAuth2 admin panel (single-owner)
- Public status page with category grouping and failure reason display
- Admin dashboard with sortable monitors table and detailed failure info
- SQLite persistence with migration support
This commit is contained in:
2026-03-05 17:25:50 -08:00
committed by Naomi Carrigan
parent f77d2ed273
commit 1e3b06036d
38 changed files with 9887 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2023",
"useDefineForClassFields": true,
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true
},
"include": ["src"]
}