https://github.com/bzimmer/gravl
Activity access
https://github.com/bzimmer/gravl
cli cycling cyclinganalytics geojson golang hiking running rwgps strava-api strava-data
Last synced: 2 months ago
JSON representation
Activity access
- Host: GitHub
- URL: https://github.com/bzimmer/gravl
- Owner: bzimmer
- License: mit
- Created: 2020-10-13T04:17:11.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-04-11T08:15:59.000Z (2 months ago)
- Last Synced: 2026-04-11T09:09:15.017Z (2 months ago)
- Topics: cli, cycling, cyclinganalytics, geojson, golang, hiking, running, rwgps, strava-api, strava-data
- Language: Go
- Homepage:
- Size: 4.8 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
[](https://github.com/bzimmer/gravl)
[](https://codecov.io/gh/bzimmer/gravl)

**gravl** command line clients for activity-related services
## Activity clients
* [Strava](https://strava.com)
* [Cycling Analytics](https://www.cyclinganalytics.com/)
* [Ride with GPS](https://ridewithgps.com)
* [Zwift](https://zwift.com)
# Installation
## Docker
gravl is available as a Docker image on GitHub Container Registry:
```dockerfile
# Minimal image (just the binary)
FROM ghcr.io/bzimmer/gravl:latest AS gravl
FROM scratch
COPY --from=gravl /usr/bin/gravl /usr/bin/gravl
ENTRYPOINT ["/usr/bin/gravl"]
# Or with a base distro if you need shell access
FROM ghcr.io/bzimmer/gravl:latest AS gravl
FROM debian:bookworm-slim
COPY --from=gravl /usr/bin/gravl /usr/bin/gravl
```
Available image tags:
- `ghcr.io/bzimmer/gravl:latest` - latest stable release
- `ghcr.io/bzimmer/gravl:v1.2.3` - specific version
## Homebrew
```bash
brew install bzimmer/tap/gravl
```
# Documentation
* [manual](https://bzimmer.github.io/gravl/)