-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,20 @@ PORT=3001 | |
# URL WHERE THE REVERSE PROXY OF THE CLM-MICROSERVICES IS | ||
DEPLOY_URL=http://localhost:3001 | ||
|
||
# ADMIN LTI TOOL | ||
UES_BASIC_LAUNCH_RESSOURCE=/basic_launch/adminService | ||
|
||
# MARIADB CONFIGURATION mapps to | ||
MARIA_CONFIG=localhost|3306|clm|root|12345 | ||
|
||
# CLM_ROOT_USER | ||
[email protected] | ||
# USERNAME OF THE CLM ROOT USER OF THE CLM. WILL BE CREATED AT FIRST STARTUP | ||
CLM_ROOT_USER= | ||
|
||
# PASSWORD OF THE ROOT USER OF THE CLM. WILL BE CREATED AT FIRST STARTUP | ||
CLM_ROOT_PASSWORD= | ||
|
||
# CLM_ROOT_PASSWORD | ||
CLM_ROOT_PASSWORD=ABC123 | ||
# CONSUMER TOKEN FOR AUTHENTICATION AGAINST CLM. WILL BE CREATED AT FIRST STARTUP | ||
CLM_CONSUMER_TOKEN= | ||
|
||
# SMTP HOST/CREDENTIALS/CONFIGS FOR RECEIVING EMAILS WHEN REGISTERING. Do not leave blank in production! | ||
SMTP_HOST= | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ servers: | |
hostname: | ||
default: localhost | ||
port: | ||
default: '5008' | ||
default: '80' | ||
path: | ||
default: '' | ||
scheme: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ exports.CONFIG = { | |
BASE_PATH: process.env.BASE_PATH || '/core', | ||
CLM_ROOT_USER: process.env.CLM_ROOT_USER || '[email protected]', | ||
CLM_ROOT_PASSWORD: process.env.CLM_ROOT_PASSWORD || 'ABC123', | ||
CLM_ROOT_CONSUMER_KEY: process.env.CLM_ROOT_CONSUMER_KEY || 'MGMT_SERVICE', | ||
DEPLOY_URL: process.env.DEPLOY_URL || 'http://localhost/api', | ||
SMTP_FROM: process.env.SMTP_FROM || '', | ||
SMTP_HOST: process.env.SMTP_HOST || '', | ||
|
@@ -50,5 +51,5 @@ exports.CONFIG = { | |
TOKEN_SECRET: process.env.TOKEN_SECRET || 'secret', | ||
REDIS_CONFIG: process.env.REDIS_CONFIG || 'localhost|6379', | ||
OIDC_PROVIDERS: JSON.parse(process.env.OIDC_PROVIDERS || `[]`), | ||
API_TOKEN: process.env.API_TOKEN || 'MGMT_SERVICE' | ||
ODIC_CLIENTS: JSON.parse(process.env.OIDC_CLIENTS || `[]`), | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import express from 'express'; | ||
import { UserModel } from '../lib/CoreLib'; | ||
declare class OIDController { | ||
router: express.Router; | ||
constructor(); | ||
init(): void; | ||
brokerLogout: express.Handler; | ||
brokerLogoutRedirect: express.Handler; | ||
ssoLanding: express.Handler; | ||
ssoBackendLogin: express.Handler; | ||
codeAuthFlow: (code: string) => Promise<{ | ||
user: UserModel; | ||
access_token: any; | ||
refresh_token: any; | ||
expires_in: any; | ||
refresh_expires_in: any; | ||
}>; | ||
getAccessTokenByCode: express.Handler; | ||
ssoSuccess: express.Handler; | ||
} | ||
declare const _default: OIDController; | ||
export default _default; | ||
//# sourceMappingURL=OIDCController.d.ts.map |