File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ export class Config {
2323 public static tls_passphrase : string = Config . getEnv ( "tls_passphrase" , "" ) ;
2424 public static port : number = parseInt ( Config . getEnv ( "port" , "3000" ) ) ;
2525 public static domain : string = Config . getEnv ( "domain" , "localhost" ) ;
26+ public static namespace : string = Config . getEnv ( "namespace" , "" ) ;
27+
2628 public static protocol : string = Config . getEnv ( "protocol" , "http" ) ;
2729 public static saml_issuer : string = Config . getEnv ( "saml_issuer" , "the-issuer" ) ;
2830
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ process.on('unhandledRejection', up => {
124124 const server : http . Server = await WebServer . configure ( logger , Config . baseurl ( ) ) ;
125125 WebSocketServer . configure ( logger , server ) ;
126126 logger . info ( "listening on " + Config . baseurl ( ) ) ;
127+ logger . info ( "namespace: " + Config . namespace ) ;
127128 if ( ! await initDatabase ( ) ) {
128129 process . exit ( 404 ) ;
129130 }
Original file line number Diff line number Diff line change 1- 0.0.173
1+ 0.0.174
You can’t perform that action at this time.
0 commit comments