{"id":50042178,"url":"https://github.com/driversti/formula1","last_synced_at":"2026-05-21T03:35:10.691Z","repository":{"id":352030486,"uuid":"1213498261","full_name":"driversti/formula1","owner":"driversti","description":"Formula 1 companion dashboard built on the public live-timing archive — starting with pre-race tyre inventory, more race-weekend insights to follow.","archived":false,"fork":false,"pushed_at":"2026-04-17T16:10:01.000Z","size":418,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-17T16:12:48.086Z","etag":null,"topics":["data-visualization","f1","formula-1","github-pages","python","react","tailwindcss","typescript","vite"],"latest_commit_sha":null,"homepage":"https://driversti.github.io/formula1/","language":"Python","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/driversti.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":".github/CODEOWNERS","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":"2026-04-17T12:53:34.000Z","updated_at":"2026-04-17T16:10:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/driversti/formula1","commit_stats":null,"previous_names":["driversti/formula1"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/driversti/formula1","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driversti%2Fformula1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driversti%2Fformula1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driversti%2Fformula1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driversti%2Fformula1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/driversti","download_url":"https://codeload.github.com/driversti/formula1/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driversti%2Fformula1/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33287534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"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":["data-visualization","f1","formula-1","github-pages","python","react","tailwindcss","typescript","vite"],"created_at":"2026-05-21T03:35:07.236Z","updated_at":"2026-05-21T03:35:10.685Z","avatar_url":"https://github.com/driversti.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Formula 1 Dashboard\n\nA companion dashboard for Formula 1 race weekends, built on top of F1's public live-timing archive. The project ingests raw session data, reconstructs what happened on track, and presents it as focused, interactive views for fans who want more than the broadcast shows.\n\n🏁 **Live site:** [driversti.github.io/formula1](https://driversti.github.io/formula1/)\n\n[![Deploy](https://github.com/driversti/formula1/actions/workflows/deploy.yml/badge.svg)](https://github.com/driversti/formula1/actions/workflows/deploy.yml)\n[![CI](https://github.com/driversti/formula1/actions/workflows/ci.yml/badge.svg)](https://github.com/driversti/formula1/actions/workflows/ci.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)\n\n## Features\n\n- **Pre-race tyre inventory** — for an upcoming Grand Prix, shows each driver's available tyre sets reconstructed from practice and qualifying: which compounds are still fresh, which are scrubbed, and how many laps each set has already seen.\n\nMore views are planned as the underlying data pipeline grows — stints, strategy, pace comparisons, and beyond.\n\n## What this repo contains\n\n- **`seasons/`** — download scripts for F1's public live-timing archive (`livetiming.formula1.com/static/`). Nothing under `seasons/20xx/` is checked in; CI fetches the minimum it needs on every build via `make fetch-race`.\n- **`precompute/`** — a Python 3.13 pipeline (Pydantic + pytest) that parses raw `.jsonStream` files and emits validated JSON manifests consumed by the frontend.\n- **`site/`** — a React 19 + TypeScript + Vite + Tailwind frontend. Charts use `@visx`. E2E tests with Playwright.\n\nSee [`docs/architecture.md`](./docs/architecture.md) for a deeper overview and [`docs/data-pipeline.md`](./docs/data-pipeline.md) for the data flow.\n\n## Quick start\n\nPrereqs: Python 3.13+ with [`uv`](https://docs.astral.sh/uv/), Node.js 22+, GNU Make.\n\n```bash\n# one-time setup\nmake install\n\n# regenerate the committed race manifest and start the dev server\nmake dev\n# → http://localhost:5173\n```\n\nBuild for production (same as CI):\n\n```bash\nmake build\n```\n\nRun the full test suite (Python + site unit + Playwright E2E):\n\n```bash\nmake test\n```\n\n## Repo layout\n\n```\nformula1/\n├── seasons/           # F1 live-timing archive download scripts\n│   ├── download_f1.py\n│   ├── verify_f1.py\n│   └── 2018…2026/\n├── precompute/        # Python pipeline: raw .jsonStream → race manifest\n│   ├── src/f1/\n│   ├── tests/\n│   └── fixtures/\n├── site/              # React + Vite dashboard\n│   ├── src/\n│   ├── tests/\n│   └── public/\n├── docs/              # architecture, data pipeline, dev guide\n├── Makefile           # top-level orchestration\n└── .github/workflows/ # CI + Pages deploy\n```\n\n## Contributing\n\nIssues and PRs are welcome! Ideas for new views, data sources, or visualisations are especially appreciated — this is meant to grow beyond its first feature. Before opening a PR:\n\n1. Run `make test` locally.\n2. Keep changes focused — smaller PRs are easier to review.\n3. Manifest formats are validated by Pydantic in `precompute/` and mirrored by Zod in `site/` — changes to one usually require the other.\n\nSee [`docs/development.md`](./docs/development.md) for local setup details.\n\n## Data \u0026 credits\n\nRace data comes from Formula 1's publicly accessible live-timing archive at `livetiming.formula1.com/static/`. F1, FORMULA 1, and related marks are trademarks of Formula One Licensing BV — this project is not affiliated with, endorsed by, or associated with Formula 1.\n\n## License\n\n[MIT](./LICENSE) © Yurii Chekhotskyi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdriversti%2Fformula1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdriversti%2Fformula1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdriversti%2Fformula1/lists"}