Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (29 loc) · 1.05 KB

File metadata and controls

37 lines (29 loc) · 1.05 KB

Gitlab Integration

Gitlab Cloud (gitlab.com)

Gitlab / OAuth

The Gitlab.com integration for CodeStream implements the standard OAuth procedure which requires a dedicated OAuth application on Gitlib.com with the appropriate settings.

  1. Login to Gitlab.com

  2. Edit Profile (User Settings) > Applications

    1. Set the Redirect URL (callback URL) to for your API's URL (similar to https://api.codestream.us/no-auth/provider-token/gitlab)

    2. Select the Confidential, Expire AccessTokens and api Scopes checkboxes (all three).

    3. Create the application. Take note of the Application ID and Secret.

  3. Add the credentials to the CodeStream server's config file in the intergrations section.

    {
        "integrations": {
            "gitlab": {
                "cloud": {
                    "appClientId": "***************************",
                    "appClientSecret": "*************************",
                    "disabled": false
                }
            }
        }
    }