https://github.com/codevachon/gatsby-source-untappd-json
A Gatsby Source to Transform an Untappd JSON Export into a Gatsby GraphQL Data Source.
https://github.com/codevachon/gatsby-source-untappd-json
Last synced: 8 months ago
JSON representation
A Gatsby Source to Transform an Untappd JSON Export into a Gatsby GraphQL Data Source.
- Host: GitHub
- URL: https://github.com/codevachon/gatsby-source-untappd-json
- Owner: CodeVachon
- Created: 2020-12-24T21:07:58.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-29T21:54:16.000Z (almost 5 years ago)
- Last Synced: 2025-03-20T07:37:58.806Z (8 months ago)
- Language: TypeScript
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gatsby-source-untappd-json
A Gatsby Source to Transform an Untappd JSON Export into a Gatsby GraphQL Data Source.
## Getting Started
1. Install the package with **yarn** or **npm**
`yarn add gatsby-source-untappd-json gatsby-source-filesystem gatsby-plugin-sharp gatsby-transformer-sharp`
2. Add to plugins in your gatsby-config.js
```javascript
module.exports = {
plugins: [
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-untappd-json",
options: {
src: "path/to/json/file.json"
}
}
]
};
```
## Contributing
Every contribution is very much appreciated.
Feel free to file bugs, feature- and pull-requests.
❤️ If this plugin is helpful for you, star it on [GitHub](https://github.com/codevachon/gatsby-source-untappd-json).