We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8244c commit 9ca1204Copy full SHA for 9ca1204
extensions/github-authentication/src/config.ts
@@ -10,6 +10,10 @@ export interface IConfig {
10
}
11
12
// For easy access to mixin client ID and secret
13
+//
14
+// NOTE: GitHub client secrets cannot be secured when running in a native client so in other words, the client secret is
15
+// not really a secret... so we allow the client secret in code. It is brought in before we publish VS Code. Reference:
16
+// https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/best-practices-for-creating-an-oauth-app#client-secrets
17
export const Config: IConfig = {
18
gitHubClientId: '01ab8ac9400c4e429b23'
19
};
0 commit comments