{"id":50383382,"url":"https://github.com/log-forge/unicron-source","last_synced_at":"2026-05-30T13:05:21.459Z","repository":{"id":361368973,"uuid":"1254205266","full_name":"log-forge/unicron-source","owner":"log-forge","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-30T09:26:48.000Z","size":1355,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T11:15:51.612Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/log-forge.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"2026-05-30T09:16:23.000Z","updated_at":"2026-05-30T09:26:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/log-forge/unicron-source","commit_stats":null,"previous_names":["log-forge/unicron-source"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/log-forge/unicron-source","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/log-forge%2Funicron-source","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/log-forge%2Funicron-source/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/log-forge%2Funicron-source/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/log-forge%2Funicron-source/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/log-forge","download_url":"https://codeload.github.com/log-forge/unicron-source/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/log-forge%2Funicron-source/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33693164,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-05-30T13:05:20.741Z","updated_at":"2026-05-30T13:05:21.454Z","avatar_url":"https://github.com/log-forge.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LogForge Unicron\n\nLogForge Unicron is source-available code from\nhttps://github.com/log-forge/logforge for a local-first observability appliance\nfor Docker hosts and container fleets. It packages a web UI, Central API, local\nadmin auth, agent enrollment, telemetry ingest, alert evaluation, and\nnotifications into a standalone deployment.\n\n## Quick Start\n\nRun the standalone appliance:\n\n```sh\ndocker compose -f deploy/standalone/docker-compose.yml up -d\n```\n\nOpen:\n\n```text\nhttps://localhost/unicron\n```\n\nIf `CENTRAL_ADMIN_PASSWORD` is unset, the auth service generates a first-boot\nadministrator password and logs it once:\n\n```sh\ndocker logs unicron-appliance | grep -E \"Local admin first-boot generated administrator credential|generatedPassword\"\n```\n\nTo validate a local appliance image:\n\n```sh\ndocker build -f ops/appliance/Dockerfile -t unicron-appliance:latest .\n\nUNICRON_IMAGE=unicron-appliance:latest \\\nUNICRON_HTTP_PORT=8080 \\\nUNICRON_HTTPS_PORT=8444 \\\nUNICRON_MTLS_PORT=9443 \\\ndocker compose -f deploy/standalone/docker-compose.yml up -d\n```\n\n## What Is Included\n\n- Single-image appliance runtime for standalone deployment.\n- Local administrator auth with explicit recovery mode.\n- Central backend, React frontend, alert engine, notifier API, and notifier worker.\n- Postgres, MongoDB, Redis, Step CA/RA, Traefik, VictoriaMetrics, VictoriaLogs,\n  and OTel collector inside the appliance.\n- Agent enrollment through tokens and mTLS identity.\n- Browser and API ingress under `/unicron`.\n- Agent mTLS and OTLP ingress on port `8443`.\n\n## Repository Map\n\n- `deploy/standalone/`: standalone Compose artifact.\n- `ops/appliance/`: appliance Dockerfile, manager, templates, and tests.\n- `central/unicron/backend/`: Central FastAPI backend.\n- `central/unicron/frontend/`: React Router frontend.\n- `central/auth/`: local administrator auth service.\n- `edge/go-streamer/`: remote agent.\n- `services/alert-engine/`: alert rules and evaluation service.\n- `services/notifier/`: notification API and worker.\n- `libs/unicron_shared/`: shared Python models and enums.\n\n## Development\n\nUseful commands:\n\n```sh\nmake build-appliance\nmake build-up\nmake central-up\nmake central-down\nmake dind-up\nmake dind-down\n```\n\nCommon focused checks:\n\n```sh\ndocker compose -f deploy/standalone/docker-compose.yml config\nnpm --prefix central/unicron/frontend run typecheck\nTMPDIR=/tmp npm --prefix central/unicron/frontend test\nnpm --prefix central/auth run typecheck\nmake test-central-auth\n(cd ops/appliance/manager \u0026\u0026 go test ./...)\n(cd edge/go-streamer \u0026\u0026 go test ./...)\n(cd central/unicron/backend \u0026\u0026 poetry run python -m unittest tests.test_security_hardening tests.test_origin_policy tests.test_appliance_update)\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Security\n\nSee [SECURITY.md](SECURITY.md).\n\n## License\n\nLogForge Unicron Proprietary License. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flog-forge%2Funicron-source","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flog-forge%2Funicron-source","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flog-forge%2Funicron-source/lists"}