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

Commit be552e2

Browse files
committed
Start creating docs for integrations
1 parent d7db1f6 commit be552e2

File tree

12 files changed

+80
-0
lines changed

12 files changed

+80
-0
lines changed

api_server/docs/integrations/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
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

api_server/docs/integrations/asana.md

Whitespace-only changes.

api_server/docs/integrations/azure-devops.md

Whitespace-only changes.

api_server/docs/integrations/bitbucket.md

Whitespace-only changes.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
```
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Gitlab Integration
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Jira (Atlassian Cloud)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Linear Integration
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# MS Teams Integrations
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# New Relic Integration

0 commit comments

Comments
 (0)