19 lines
441 B
TypeScript
19 lines
441 B
TypeScript
// Browser → host ports (defaults; Docker build may overwrite via API_PUBLIC_URL).
|
|
export const environment = {
|
|
production: true,
|
|
apiUrl: 'http://localhost:32081',
|
|
identityServer: 'http://localhost:32081/',
|
|
allowedUrls: ['http://localhost:32081'],
|
|
// Plain HTTP demo stack — do not require HTTPS for OIDC.
|
|
requireHttps: false,
|
|
externalLogins: {
|
|
google: {
|
|
clientId: ''
|
|
},
|
|
auth0: {
|
|
clientId: '',
|
|
domain: ''
|
|
}
|
|
}
|
|
};
|