# Jira REST Connector This connector currently covers the Project and Issues objects in the Jira REST API v2. To use this, you'll need to add a `API_KEY` in your environment variables then running `rover` or the `router` with the config files in this folder. ## Additional Setup for VS Code Task runner Edit your `.vscode/settings.json` to include the Strapi specific keys ``` { "terminal.integrated.profiles.osx": { "graphos": { "path": "zsh", "args": ["-l"], "env": { "API_KEY": "", "APOLLO_KEY": "", ... } } }, "terminal.integrated.defaultProfile.osx": "graphos" } ``` Then you can execute the "Tasks: Run Task" command in VS code to execute the `rover dev` task or simply open a new terminal window in vscode with the `graphos` profile, then you can simply run `rover dev --supergraph-config supergraph.yaml --router-config router.yaml`. ## Contributing The following schema modules need to be: 1. A schema designed for that portion of the rest API as a new `.graphql` file 2. Additions to the `router.yaml` and `supergraph.yaml` files There are multiple moduels that can be implemented in the [documentation navigation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro) panel. You can use the current connector as an example to follow and implement additional resources.