{"id":48739865,"url":"https://github.com/rustydb/sentinel","last_synced_at":"2026-05-23T08:01:10.320Z","repository":{"id":348122836,"uuid":"1196505469","full_name":"rustydb/sentinel","owner":"rustydb","description":"Defense telemetry for EVE Frontier.","archived":false,"fork":false,"pushed_at":"2026-05-23T06:10:47.000Z","size":3151,"stargazers_count":1,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-23T06:36:41.299Z","etag":null,"topics":["blockchain","evefrontier","indexer","sui","web3"],"latest_commit_sha":null,"homepage":"https://ef-sentinel.xyz","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rustydb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-30T19:06:50.000Z","updated_at":"2026-05-23T06:08:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rustydb/sentinel","commit_stats":null,"previous_names":["rustydb/sentinel"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/rustydb/sentinel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustydb%2Fsentinel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustydb%2Fsentinel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustydb%2Fsentinel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustydb%2Fsentinel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rustydb","download_url":"https://codeload.github.com/rustydb/sentinel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustydb%2Fsentinel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33387656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T04:15:53.637Z","status":"ssl_error","status_checked_at":"2026-05-23T04:15:53.242Z","response_time":53,"last_error":"SSL_read: 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":["blockchain","evefrontier","indexer","sui","web3"],"created_at":"2026-04-12T06:38:05.592Z","updated_at":"2026-05-23T08:01:10.293Z","avatar_url":"https://github.com/rustydb.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./assets/logo.png\" alt=\"Sentinel logo\" width=\"140\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\nSentinel\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\u003cstrong\u003eDefensive telemetry for EVE Frontier turret operators.\u003c/strong\u003e\u003c/p\u003e\n\n## Table of Contents\n\n- [What It Covers](#what-it-covers)\n- [Tech Stack](#tech-stack)\n- [Repository Layout](#repository-layout)\n- [EVE Hackathon Notes](#eve-hackathon-notes)\n- [Getting Started](#getting-started)\n    - [Prerequisites](#prerequisites)\n    - [Preferred Local Workflow](#preferred-local-workflow)\n    - [Production-Style Stack](#production-style-stack)\n    - [Host-Native Workflow](#host-native-workflow)\n- [Validation](#validation)\n- [Documentation](#documentation)\n- [License](#license)\n\n---\n\nSentinel is an EVE Frontier dashboard for live monitoring of a user's turret assemblies; their interactions, and current status.\n\nThe project combines a React dashboard, a Bun/Express support API, and a Rust indexer that follows turret activity on Sui blockchain.\n\n## What It Covers\n\n- Displaying Turret Smart Assembly objects owned by the logged in wallet\n- Event history and threat intelligence from indexed on-chain turret events\n- Solar-system mapping for working around the location obfuscation in EVE, players can assign solar-systems to their network nodes\n- Galaxy plotting by network-node; assign solar systems to network-nodes to map turrets\n- Live operator view\n\n## Tech Stack\n\n- `Bun` workspaces for the monorepo, scripts, and API runtime\n- `React 19` and `Vite` for the dashboard\n- `TypeScript` across the dashboard, API, and shared contracts\n- `Tailwind CSS v4` for styling\n- `Express 5` and `pg` for dashboard support APIs\n- `Rust` with `tokio`, `reqwest`, `tokio-postgres`, and `diesel` for the Sui indexer\n- `PostgreSQL` for indexed events, node mappings, and derived dashboard state\n- `Podman Compose` for the preferred local development stack\n- `Vitest`, Testing Library, Playwright, ESLint, and Prettier for validation\n\n## Repository Layout\n\n```text\n.\n|-- apps/\n|   |-- dashboard/      # React dashboard UI\n|   |-- api/            # Bun + Express support API\n|   `-- indexer/        # Rust indexer for Sui turret events\n|-- packages/\n|   `-- shared-types/   # Shared GraphQL queries and TypeScript contracts\n|-- docs/               # Product, domain, design system, ADRs\n|-- specs/              # Speckit specs, plans, tasks, quickstarts\n|-- assets/             # Shared branding assets\n`-- docker-compose.yml\n```\n\n## EVE Hackathon Notes\n\nThe 2026 EVE Hackathon was ongoing during Cycle 5 of EVE Frontier, and at this time there were\nmomumental changes made to the game. Some of these changes, such as certain on-chain events, were\nnot fully functional yet for the hackathon.\n\nTo work around missing on-chain events, this application created a \"demo-mode\" that populates the dashboard with static mocks.\n\nDemo mode will be removed from the application after the on-chain events become available, it will\nnot be maintained long-term.\n\n\u003e NOTE: The data in demo mode is entirely static, it makes no attempt to simulate live data.\n\nAccess demo-mode by the `/demo` sub-path (e.g. `http://localhost:5173/demo`).\n\n## Getting Started\n\n### Prerequisites\n\n- `Podman` and `podman compose`\n- `Bun` 1.2+ for host-native workflows\n- `Rust` and `cargo` if you want to run the indexer outside containers\n\n### Preferred Local Workflow\n\nThe repo is designed to be iterated on with the development stack:\n\n```bash\npodman compose -f docker-compose.yml up\n```\n\nLocal services:\n\n- dashboard: `http://127.0.0.1:5173`\n- api: `http://127.0.0.1:3002`\n- postgres: `127.0.0.1:5433`\n\nUseful routes:\n\n- live dashboard: `http://127.0.0.1:5173`\n- demo dashboard: `http://127.0.0.1:5173/demo`\n\nUse the live dashboard when you want the real wallet-connected flow. Use `/demo` when you want a fixture-backed review surface without depending on live telemetry.\n\nNotes:\n\n\u003e This project was built and tested using `podman` and `podman compose`. Use `docker` at your own discretion.\n\u003e\n\u003e - The dev stack defaults to the current `Utopia` world assumptions\n\u003e - the demo route stays fixture-backed on purpose; it does not pretend to be live telemetry\n\u003e - some older repo quickstarts still mention `5174`, but the checked-in dashboard runtime is currently configured for `5173`\n\n### Rebuild Local Stack\n\nFor a fresh container rebuild of the current local stack, use:\n\n```bash\npodman compose -f docker-compose.yml up --build\n```\n\n### Host-Native Workflow\n\nIf you want to run pieces directly on your machine instead of through Podman:\n\n```bash\nbun install\nbun run dev\ncargo run --manifest-path apps/indexer/Cargo.toml\n```\n\nThe root `dev` script starts the dashboard and API together. The indexer runs separately.\n\n## Validation\n\nFor dashboard-focused work, start with:\n\n```bash\nbun lint\nbunx vitest run --environment jsdom\n```\n\nFor the full repo:\n\n```bash\nbun test\n```\n\nFor indexer-only work:\n\n```bash\ncargo test --manifest-path apps/indexer/Cargo.toml\n```\n\n## Documentation\n\n- [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution rules and commit expectations\n- [CHANGELOG.md](./CHANGELOG.md) for notable project changes\n- Design and spec documentation is located in the `./docs` directory.\n\n## License\n\nThis project is licensed under the [MIT License](./LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustydb%2Fsentinel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustydb%2Fsentinel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustydb%2Fsentinel/lists"}