{"id":42549028,"url":"https://github.com/full-chaos/dev-health-web","last_synced_at":"2026-02-07T17:06:01.481Z","repository":{"id":330659260,"uuid":"1123493608","full_name":"full-chaos/dev-health-web","owner":"full-chaos","description":"Developer Teams and Individual Ecosystem Metrics Frontend for full-chaos/dev-health-ops","archived":false,"fork":false,"pushed_at":"2026-02-06T01:32:58.000Z","size":1069,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-06T08:49:30.621Z","etag":null,"topics":["developer-experience","developer-health","developer-tools","engineering-leadership","metric"],"latest_commit_sha":null,"homepage":"https://demo.fullchaos.studio","language":"TypeScript","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/full-chaos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-27T01:54:28.000Z","updated_at":"2026-02-06T01:33:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/full-chaos/dev-health-web","commit_stats":null,"previous_names":["full-chaos/dev-health-web"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/full-chaos/dev-health-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/full-chaos%2Fdev-health-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/full-chaos%2Fdev-health-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/full-chaos%2Fdev-health-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/full-chaos%2Fdev-health-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/full-chaos","download_url":"https://codeload.github.com/full-chaos/dev-health-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/full-chaos%2Fdev-health-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29200844,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T16:28:23.579Z","status":"ssl_error","status_checked_at":"2026-02-07T16:28:22.566Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["developer-experience","developer-health","developer-tools","engineering-leadership","metric"],"created_at":"2026-01-28T19:00:21.689Z","updated_at":"2026-02-07T17:06:01.477Z","avatar_url":"https://github.com/full-chaos.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dev Health Web\n\n[Demo](https://demo.fullchaos.studio)\n\nThis is the application frontend for [dev-health-ops](https://github.com/chrisgeo/dev-health-ops).\n\n## Prerequisites\n\n- Node.js 18+ (recommended: 20+)\n- npm, yarn, pnpm, or bun\n\n## Getting Started\n\n### Full Stack (with Backend)\n\n1. **Install dependencies:**\n\n```bash\nnpm install\n```\n\n2. **Start ClickHouse** (from `dev-health-ops`):\n\n```bash\ndev-hops grafana up\n```\n\n3. **Run the API:**\n\n```bash\ndev-hops api --db \"clickhouse://localhost:8123/default\" --reload\n```\n\n4. **Run the web app:**\n\n```bash\nBACKEND_URL=\"http://127.0.0.1:8000\" npm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser.\n\n### Frontend Only (Demo Mode)\n\nYou can run the frontend with sample data (no backend required):\n\n```bash\nnpm install\nnpm run dev\n```\n\nThis will serve the app at [http://localhost:3000](http://localhost:3000) using static sample data.\n\n## Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `BACKEND_URL` | Backend API URL | `http://127.0.0.1:8000` |\n| `NEXT_PUBLIC_USE_GRAPHQL_ANALYTICS` | Enable GraphQL analytics | `false` |\n| `NEXT_PUBLIC_DEV_HEALTH_TEST_MODE` | Use sample data (for testing) | `false` |\n| `NEXT_PUBLIC_DOCS_URL` | Documentation link URL | — |\n| `DEMO_EXPORT` | Enable static export mode | `false` |\n| `BASE_PATH` | Subpath for hosting (e.g., `/app`) | — |\n\nCopy `.env.example` to `.env.local` and configure as needed.\n\n## Scripts\n\n| Script | Description |\n|--------|-------------|\n| `npm run dev` | Start development server |\n| `npm run build` | Build for production |\n| `npm run start` | Start production server |\n| `npm run lint` | Run ESLint |\n| `npm run test:unit` | Run unit tests (Vitest) |\n| `npm run test:e2e` | Run e2e tests (Playwright) |\n\n## Documentation\n\n- `docs/visualizations.md` — Chart selection guide (heatmaps, quadrants, flame diagrams)\n- `docs/graphql-client.md` — urql GraphQL client usage\n- `docs/graphql-investment.md` — Investment View GraphQL API\n- `docs/hosting.md` — Demo exports, GitHub Pages, CDN hosting\n- `docs/migration-guide.md` — REST to GraphQL migration\n\n## Architecture\n\n- **Framework:** Next.js 14+ with App Router\n- **Components:** React Server Components + Client Components\n- **Styling:** Tailwind CSS\n- **Data:** urql GraphQL client, static sample data for demos\n- **Testing:** Vitest (unit), Playwright (e2e)\n\n![Screenshot](https://github.com/user-attachments/assets/8e823e44-2388-477a-bba5-3bd64efde538)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffull-chaos%2Fdev-health-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffull-chaos%2Fdev-health-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffull-chaos%2Fdev-health-web/lists"}