gatsby-source-jira

Gatsby Jira data source

MIT License

Downloads
8
Stars
4
Committers
3

Gatsby Source Plugin - Jira

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

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