Gatsby plugin to use Strava as a data source
- Download 
gatsby-source-stravafrom the NPM registry: 
yarn add gatsby-source-stravaThe package needs 3 .env variables with the following format to work:
STRAVA_CLIENT_ID=2845
STRAVA_CLIENT_SECRET=c3d62caed3sjf4vdjsb096d010d81f52a17ac5
STRAVA_TOKEN={"access_token":"ya...J0","refresh_token":"1..mE","expires_at":1581439030,"expires_in":21600}gatsby-source-strava expose a script to make the generation easier.
Open a terminal at the root of your project and type:
gatsby-source-strava-token- Add the plugin in your 
gatsby-config.jsfile 
require("dotenv").config()
module.exports = {
    plugins: [
        {
            resolve: "gatsby-source-strava",
            options: {
                stravaClientId: process.env.STRAVA_CLIENT_ID,
                stravaClientSecret: process.env.STRAVA_CLIENT_SECRET,
                stravaToken: process.env.STRAVA_TOKEN,
            },
        },
    ],
}That's it!
For advanced configuration, please read options documentation.
- ⇄ Pull/Merge requests and ★ Stars are always welcome.
 - For bugs and feature requests, please create an issue.
 
See CHANGELOG
This project is licensed under the MIT License - see the LICENCE file for details
