Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 1 month 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 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T05:19:41.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T22:34:01.294Z (about 1 month 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.[![Build Status](https://travis-ci.org/matthewsommer/gatsby-source-jira.svg?branch=master)](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",
},
}]
}
```