https://github.com/matthewsommer/gatsby-source-jira
Gatsby Jira data source
https://github.com/matthewsommer/gatsby-source-jira
gatsbyjs jira jira-rest-api react
Last synced: about 2 months ago
JSON representation
Gatsby Jira data source
- Host: GitHub
- URL: https://github.com/matthewsommer/gatsby-source-jira
- Owner: matthewsommer
- License: mit
- Created: 2018-05-30T23:50:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T05:19:41.000Z (about 3 years ago)
- Last Synced: 2025-02-07T20:36:14.995Z (10 months ago)
- Topics: gatsbyjs, jira, jira-rest-api, react
- Language: JavaScript
- Size: 212 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Gatsby Source Plugin - Jira
This is the code repository for a Gatsby Jira data source.
[](https://travis-ci.org/matthewsommer/gatsby-source-jira)
# Example Usage in Gatsby Config File
In your gatsby-config.js file add the plugin and set the host. Change the host to your Jira host.
```javascript
module.exports = {
siteMetadata: {
title: 'Jira REST Client',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: "gatsby-source-jira",
options: {
host: "jira.mattsommer.io",
epic_field_id: "customfield_10009",
},
}]
}
```