Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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",
},
}]
}
```