{"id":50507302,"url":"https://github.com/robbeverhelst/routess","last_synced_at":"2026-06-07T23:01:58.694Z","repository":{"id":359568919,"uuid":"984363761","full_name":"robbeverhelst/routess","owner":"robbeverhelst","description":"Route-planning app for cyclists, runners, and hikers. Interactive map editor, GPX import/export, and a personal route library. Open source, self-hostable, and also available as a hosted service.","archived":false,"fork":false,"pushed_at":"2026-05-31T14:13:29.000Z","size":13984,"stargazers_count":1,"open_issues_count":25,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-31T16:12:08.655Z","etag":null,"topics":["bun","mapbox","react","shadcn","typescript"],"latest_commit_sha":null,"homepage":"https://routess.com","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/robbeverhelst.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/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":"2025-05-15T20:09:42.000Z","updated_at":"2026-05-28T12:28:27.000Z","dependencies_parsed_at":"2026-05-22T18:08:41.958Z","dependency_job_id":null,"html_url":"https://github.com/robbeverhelst/routess","commit_stats":null,"previous_names":["robbeverhelst/routess"],"tags_count":264,"template":false,"template_full_name":null,"purl":"pkg:github/robbeverhelst/routess","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbeverhelst%2Froutess","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbeverhelst%2Froutess/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbeverhelst%2Froutess/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbeverhelst%2Froutess/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robbeverhelst","download_url":"https://codeload.github.com/robbeverhelst/routess/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbeverhelst%2Froutess/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33831629,"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-06-02T02:00:07.132Z","response_time":109,"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":["bun","mapbox","react","shadcn","typescript"],"created_at":"2026-06-02T17:00:35.655Z","updated_at":"2026-06-02T17:00:44.309Z","avatar_url":"https://github.com/robbeverhelst.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# routess\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![CI](https://github.com/robbeverhelst/routess/actions/workflows/ci.yml/badge.svg)](https://github.com/robbeverhelst/routess/actions/workflows/ci.yml)\n[![Release](https://img.shields.io/github/v/release/robbeverhelst/routess)](https://github.com/robbeverhelst/routess/releases)\n[![Docs](https://img.shields.io/badge/docs-docs.routess.com-blue)](https://docs.routess.com)\n\nRoute-planning app for cyclists, runners, and hikers. Interactive map editor, GPX import/export, and a personal route library. Open source, self-hostable, and also available as a hosted service.\n\n![routess route editor](docs/assets/hero.png)\n\n📚 **Full documentation: [docs.routess.com](https://docs.routess.com)**\n\n## Try it locally (self-host, 5 minutes)\n\n```bash\ngit clone https://github.com/robbeverhelst/routess.git\ncd routess\ncp docker/.env.selfhost.example .env\n# fill in JWT_SECRET, GOOGLE_CLIENT_ID/SECRET, VITE_MAPBOX_ACCESS_TOKEN\ndocker compose -f docker/compose.selfhost.yaml --project-directory . up -d\n```\n\nThen open \u003chttp://localhost:8080\u003e.\n\nSee [`docs/operations/self-host`](https://docs.routess.com/docs/operations/self-host) for the full walkthrough (OAuth setup, optional services, Helm/Kubernetes path, TLS).\n\n## What you need\n\nMinimum to run routess:\n\n- A **Google OAuth client** (the only login provider today)\n- A **Mapbox access token** (free tier is fine)\n- A **JWT secret** (any long random string)\n\nOptional services degrade gracefully when unset: Resend (email), Stadia Maps (surface analysis), Sentry/GlitchTip (error reporting), Umami (product analytics), Prometheus (metrics).\n\n## Develop on routess\n\n```bash\nbun install\ncp .env.example .env\nbun dev\n```\n\nDefaults: web `:5173`, API `:3000`, docs `:3001`, Postgres `:5432`, pgAdmin `:5050`. Ports auto-shift if taken. Full dev guide: [`docs/getting-started/local-setup`](https://docs.routess.com/docs/getting-started/local-setup).\n\n```bash\nbun run lint         # biome check\nbun run check-types  # tsc across all workspaces\nbun run test         # all tests\nbun run ci           # full pipeline (postgres + format:check + lint + check-types + build + test)\n```\n\nRun `bun run` with no arguments to list every script.\n\n## Project layout\n\n```\nroutess/\n├── apps/\n│   ├── web/            # React + Vite + Tailwind + Mapbox\n│   ├── api/            # NestJS + PostgreSQL + MikroORM\n│   ├── cli/            # `routess` CLI (npm)\n│   └── docs/           # Next.js (Fumadocs)\n├── packages/\n│   ├── core/           # @routess/core           — shared business logic \u0026 state\n│   ├── api-client/     # @routess/api-client     — type-safe API client\n│   ├── i18n/           # @routess/i18n           — internationalization\n│   └── design-tokens/  # @routess/design-tokens  — design system\n├── charts/routess/     # Helm chart\n└── docker/             # buildx bake + dev/self-host compose files\n```\n\n## Tech stack\n\n| Layer    | Technology                                              |\n|----------|---------------------------------------------------------|\n| Frontend | React, TypeScript, Vite, Tailwind, Mapbox GL            |\n| Backend  | NestJS, PostgreSQL, MikroORM, OpenTelemetry             |\n| Docs     | Next.js, Fumadocs                                       |\n| Build    | Bun workspaces, Biome, Docker Buildx Bake               |\n| Deploy   | Helm, Kubernetes, GitHub Actions, semantic-release      |\n\n## Contributing\n\nPRs welcome. See [`CONTRIBUTING.md`](.github/CONTRIBUTING.md) for the short version and [`docs/contributing`](https://docs.routess.com/docs/contributing) for depth. Run `bun run ci` before submitting; CI enforces production-strict TypeScript and Biome rules.\n\nSecurity issues: please follow [`SECURITY.md`](.github/SECURITY.md) — do not open public issues for vulnerabilities.\n\n## License\n\n[MIT](LICENSE) © Robbe Verhelst.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbeverhelst%2Froutess","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobbeverhelst%2Froutess","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbeverhelst%2Froutess/lists"}