-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecrets-example.js
More file actions
13 lines (13 loc) · 887 Bytes
/
secrets-example.js
File metadata and controls
13 lines (13 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
//FIXME: Add your secrets to this file and then rename this file to secrets.js
module.exports = {
GOOGLE_OAUTH_CLIENT: {
clientId: 'What you can get on https://console.cloud.google.com/apis/credentials/oauthclient/',
clientSecret: 'What you can get on https://console.cloud.google.com/apis/credentials/oauthclient/'
},
MICROSOFT_OAUTH_CLIENT: {
clientId: 'What you can get on https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade',
clientSecret: 'What you can get on https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade',
tenantId: 'What you can get on https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Overview',
redirectUri: 'http://localhost' // This is the default redirect URI for Electron apps, please change it if you have a different one
}
}