simply wrapper around the different APIs
- Get Your Strava Activity Data using Python (2023)+ https://developers.strava.com/docs/reference/
- https://developers.strava.com/docs/authentication/
- currency rates from nbp.pl
- Build docker image locally
docker build --tag ludw-strava .
- Run as standalone docker container
docker run -d -p 5000:5000 --env CLIENT_ID --env CLIENT_SECRET --env REFRESH_TOKEN ludw-strava
- Run as docker compose (remember to create
.env
file with all environmental variables)
version: '3'
services:
strava-service:
image: ludw/ludw-strava:latest
container_name: strava
environment:
- CLIENT_ID=${CLIENT_ID}
- CLIENT_SECRET=${CLIENT_SECRET}
- REFRESH_TOKEN=${REFRESH_TOKEN}