Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 777 Bytes

File metadata and controls

25 lines (23 loc) · 777 Bytes

Linear Integration

Setting up an OAuth App

  • Login to (register with) Linear.
  • From the user profile dropdown, select Settings > API
  • Here is where you can Create a new OAuth Application. Make sure you add a Redirect URL for your api similar to this:
    https://my-api.codestream.com/no-auth/provider-token/linear
    
  • Copy the client ID & Secret and add them to the CodeStream server config in the integrations section like this:
    {
        "integrations": {
        	"linear": {
                "cloud": {
                "appClientId": "*************************",
                "appClientSecret": "**********************************",
                "disabled": false
            }
        }
    }