* cleanup and pin versions * tweaked metadata markers, formatted metadata, cleaned up .env.example file
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
const appUrl = process.env.APP_URL || 'http://localhost:4000';
|
|
const entityId = process.env.ENTITY_ID || 'https://saml.example.com/entityid';
|
|
const ssoUrl = `${appUrl}/api/saml/sso`;
|
|
|
|
const config = {
|
|
appUrl,
|
|
entityId,
|
|
ssoUrl,
|
|
};
|
|
|
|
export default config;
|