{"id":44570246,"url":"https://github.com/projecthelena/warden","last_synced_at":"2026-04-02T13:55:37.651Z","repository":{"id":328273184,"uuid":"1110891076","full_name":"projecthelena/warden","owner":"projecthelena","description":"Open-source uptime monitoring built in Go. Multi-zone checks, status pages, unlimited team members — the production-grade upgrade from Uptime Kuma.","archived":false,"fork":false,"pushed_at":"2026-03-26T03:42:15.000Z","size":25434,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-27T00:30:39.426Z","etag":null,"topics":["devops","docker","go","golang","monitoring","open-source","self-hosted","sre","status-page","uptime","uptime-kuma-alternative","uptime-monitor"],"latest_commit_sha":null,"homepage":"https://projecthelena.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/projecthelena.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-05T22:10:45.000Z","updated_at":"2026-03-26T03:41:52.000Z","dependencies_parsed_at":"2026-02-08T08:54:28.773Z","dependency_job_id":null,"html_url":"https://github.com/projecthelena/warden","commit_stats":null,"previous_names":["clusteruptime/clusteruptime","projecthelena/warden"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/projecthelena/warden","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projecthelena%2Fwarden","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projecthelena%2Fwarden/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projecthelena%2Fwarden/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projecthelena%2Fwarden/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/projecthelena","download_url":"https://codeload.github.com/projecthelena/warden/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projecthelena%2Fwarden/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31307356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["devops","docker","go","golang","monitoring","open-source","self-hosted","sre","status-page","uptime","uptime-kuma-alternative","uptime-monitor"],"created_at":"2026-02-14T02:18:29.060Z","updated_at":"2026-04-02T13:55:37.638Z","avatar_url":"https://github.com/projecthelena.png","language":"TypeScript","readme":"# \u003cimg src=\"assets/favicon.svg\" width=\"28\" height=\"28\" alt=\"PH\" /\u003e Warden\n\n[![CI](https://github.com/projecthelena/warden/actions/workflows/ci.yml/badge.svg)](https://github.com/projecthelena/warden/actions/workflows/ci.yml)\n[![Docker](https://github.com/projecthelena/warden/actions/workflows/docker.yml/badge.svg)](https://github.com/projecthelena/warden/actions/workflows/docker.yml)\n[![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](LICENSE)\n\nSelf-hosted uptime monitoring by [Project Helena](https://projecthelena.com). Single binary, no external dependencies.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"assets/dashboard-overview.png\" alt=\"Dashboard Preview\" width=\"100%\" /\u003e\n\u003c/div\u003e\n\n## Quick Start\n\n```bash\ndocker run -d -p 9090:9090 \\\n  -v warden_data:/data \\\n  ghcr.io/projecthelena/warden:latest\n```\n\nOpen `http://localhost:9090` and create your admin account.\n\n## Environment Variables\n\n| Variable | Default | Description |\n| :--- | :--- | :--- |\n| `LISTEN_ADDR` | `:9090` | Port Warden listens on. Change it if 9090 is already taken. |\n| `DB_TYPE` | `sqlite` | `sqlite` or `postgres`. Warden uses SQLite by default — no setup needed. Set to `postgres` if you want to use PostgreSQL. Takes precedence over `DB_URL` auto-detection. |\n| `DB_PATH` | `/data/warden.db` | Where the SQLite database file is stored. Only matters when using SQLite. |\n| `DB_URL` | — | PostgreSQL connection string (e.g. `postgres://user:pass@host:5432/warden`). Setting this automatically switches to PostgreSQL. |\n| `COOKIE_SECURE` | `false` | Set `true` if you serve Warden over HTTPS. Tells browsers to only send login cookies over secure connections, preventing them from leaking on plain HTTP. |\n| `TRUST_PROXY` | `false` | Set `true` if Warden runs behind a reverse proxy (nginx, Traefik, Caddy). Lets Warden see users' real IPs for rate limiting. Leave `false` if Warden is exposed directly — otherwise anyone can fake their IP. |\n| `ADMIN_SECRET` | — | For development and testing only. Enables the database reset endpoint and disables rate limits. Do not set in production. |\n\n## Docker Compose\n\nReady-to-use compose files in [`deploy/`](deploy/):\n\n- [**SQLite**](deploy/docker-compose.sqlite.yml) — simplest, no extra services\n- [**PostgreSQL**](deploy/docker-compose.postgres.yml) — for larger deployments\n\n## Documentation\n\nSee the [`docs/`](docs/) folder for detailed guides:\n\n- [API](docs/api.md) — REST API and Swagger docs\n- [Database](docs/database.md) — SQLite vs PostgreSQL configuration\n- [Load Testing](docs/load-testing.md) *(coming soon)*\n\n## License\n\n[AGPL-3.0](LICENSE) — Project Helena\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojecthelena%2Fwarden","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojecthelena%2Fwarden","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojecthelena%2Fwarden/lists"}