logo
Connectors

Linear

Integrate Linear workspace with AINexLayer

Linear OAuth Integration Guide

This guide explains how to set up a Linear OAuth integration for AINexLayer.

Step 1: Accessing Linear API Settings

  1. Navigate to your workspace's API settings at linear.app/<your-workspace>/settings/api
  2. Under OAuth Applications, click "+ New OAuth application"

Linear API Settings Page

Step 2: Creating New Application

Complete the application details:

FieldValue
Application iconUpload an icon (at least 256x256px)
Application nameAINexLayer
Developer nameAINexLayer
Developer URLhttps://www.AINexLayer.com/
DescriptionConnect any LLM to your internal knowledge sources and chat with it in real time alongside your team.
Callback URLshttp://localhost:8000/api/v1/auth/linear/connector/callback
GitHub usernameYour GitHub username (optional)

Settings

  • Public - Enable this to allow the application to be installed by other workspaces

Click Create to create the application.

Create New Application Form

Step 3: Obtaining OAuth Credentials

After creating the application, you'll see your OAuth credentials:

  1. Copy your Client ID
  2. Copy your Client Secret

Never share your client secret publicly.

OAuth Credentials


Deploying AINexLayer with Linear Connector

Add the Linear credentials to your .env file (created during Docker installation):

LINEAR_CLIENT_ID=your_linear_client_id
LINEAR_CLIENT_SECRET=your_linear_client_secret
LINEAR_REDIRECT_URI=http://localhost:8000/api/v1/auth/linear/connector/callback

Then restart the services:

docker compose up -d

On this page