This repository was archived by the owner on Nov 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 12 files changed +80
-0
lines changed
api_server/docs/integrations Expand file tree Collapse file tree 12 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 11# Integrations
22
33## 3rd Party Services
4+ - [ Asana] ( asana.md )
5+ - [ Azure DevOps] ( azure-devops.md )
6+ - [ Bitbucket] ( bitbucket.md )
7+ - [ Github] ( github.md )
8+ - [ Gitlab] ( gitlab.md )
9+ - [ jira] ( jira.md )
10+ - [ linear] ( linear.md )
11+ - [ msteams] ( msteams.md )
12+ - [ newrelic] ( newrelic.md )
413- [ Slack] ( slack.md )
14+ - [ Trello] ( trello.md )
515
616## OAuth & SSO Handshake
717
Original file line number Diff line number Diff line change 1+ # Integration with Github
2+
3+ ## Github Cloud (github.com)
4+
5+ ### SSO / OAuth
6+
7+ Github.com SSO support for CodeStream implements the standard OAuth procedure
8+ which requires a dedicated OAuth application on Github.com with the appropriate
9+ settings.
10+
11+ 1 . Login to Github.com
12+
13+ 1 . ` Settings > Developer Settings > OAuth Apps > Create New App `
14+ 1 . Set the ** Authorization Callback URL** to for your API's URL (similar to
15+ ` https://api.codestream.us/no-auth/provider-token/github ` )
16+ 1 . Generate a client secret and add both the Client ID and secret to the
17+ secrets database.
18+
19+ 1 . Add the credentials to the CodeStream server's config file in the
20+ ` intergrations ` section.
21+ ```
22+ {
23+ "integrations": {
24+ "github": {
25+ "cloud": {
26+ "appClientId": "***************************",
27+ "appClientSecret": "*************************",
28+ "disabled": false
29+ }
30+ }
31+ }
32+ }
33+ ```
Original file line number Diff line number Diff line change 1+ # Gitlab Integration
Original file line number Diff line number Diff line change 1+ # Jira (Atlassian Cloud)
Original file line number Diff line number Diff line change 1+ # Linear Integration
Original file line number Diff line number Diff line change 1+ # MS Teams Integrations
Original file line number Diff line number Diff line change 1+ # New Relic Integration
You can’t perform that action at this time.
0 commit comments