2017-09-14 12:37:36 +02:00
|
|
|
export const environment = {
|
2018-10-08 16:58:52 +02:00
|
|
|
production: false,
|
2019-04-25 08:59:29 +02:00
|
|
|
Server: 'http://localhost:8080/api/',
|
|
|
|
App: 'http://localhost:4200/',
|
2018-10-08 16:58:52 +02:00
|
|
|
HelpService: {
|
|
|
|
Enabled: false,
|
2019-04-25 08:59:29 +02:00
|
|
|
Url: 'localhost:5000/',
|
2018-10-08 16:58:52 +02:00
|
|
|
},
|
2019-04-25 08:59:29 +02:00
|
|
|
defaultCulture: 'en-US',
|
2018-11-27 15:13:56 +01:00
|
|
|
loginProviders: {
|
2019-10-23 12:38:27 +02:00
|
|
|
enabled: [1, 2, 3, 4, 5, 6, 7, 8],
|
2019-04-25 08:59:29 +02:00
|
|
|
facebookConfiguration: { clientId: '' },
|
|
|
|
googleConfiguration: { clientId: '' },
|
2018-11-27 15:13:56 +01:00
|
|
|
linkedInConfiguration: {
|
2019-04-25 08:59:29 +02:00
|
|
|
clientId: '',
|
|
|
|
oauthUrl: 'https://www.linkedin.com/oauth/v2/authorization',
|
2019-10-02 13:26:35 +02:00
|
|
|
redirectUri: 'http://localhost:4200/login/linkedin',
|
|
|
|
state: '987654321'
|
2018-11-27 15:13:56 +01:00
|
|
|
},
|
|
|
|
twitterConfiguration: {
|
2019-04-25 08:59:29 +02:00
|
|
|
clientId: '',
|
|
|
|
oauthUrl: 'https://api.twitter.com/oauth/authenticate'
|
2018-11-27 15:13:56 +01:00
|
|
|
},
|
|
|
|
b2accessConfiguration: {
|
2019-04-25 08:59:29 +02:00
|
|
|
clientId: '',
|
|
|
|
oauthUrl: 'https://b2access-integration.fz-juelich.de:443/oauth2-as/oauth2-authz',
|
2019-11-14 12:56:09 +01:00
|
|
|
redirectUri: 'http://localhost:4200/api/oauth/authorized/b2access',
|
|
|
|
state: ''
|
2019-07-12 16:22:57 +02:00
|
|
|
},
|
|
|
|
orcidConfiguration: {
|
|
|
|
clientId: 'APP-766DI5LP8T75FC4R',
|
|
|
|
oauthUrl: 'https://orcid.org/oauth/authorize',
|
|
|
|
redirectUri: 'http://localhost:4200/login/external/orcid'
|
2019-10-23 12:38:27 +02:00
|
|
|
},
|
|
|
|
openAireConfiguration: {
|
|
|
|
clientId: '',
|
|
|
|
oauthUrl: '',
|
|
|
|
redirectUri: '',
|
|
|
|
state: '987654321'
|
2018-11-27 15:13:56 +01:00
|
|
|
}
|
2019-01-18 18:03:45 +01:00
|
|
|
},
|
|
|
|
logging: {
|
|
|
|
enabled: true,
|
|
|
|
logLevels: ["debug", "info", "warning", "error"]
|
2019-04-25 08:59:29 +02:00
|
|
|
},
|
2020-02-11 17:27:54 +01:00
|
|
|
lockInterval: 60000,
|
2020-02-13 17:15:34 +01:00
|
|
|
guideAssets: "assets/images/guide"
|
2017-09-14 12:37:36 +02:00
|
|
|
};
|