1.0.2 • Published 6 years ago

gatsby-source-jira v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Gatsby Source Plugin - Jira

This is the code repository for a Gatsby Jira data source.

Build Status

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.

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