constructor()

in src/app/services/envconfig/envconfig.service.ts [41:48]


  constructor(private httpClient: HttpClient) {
    this.uiProtocol = window.location.protocol;
    this.uiHostname = window.location.hostname;
    this.uiPort = window.location.port;
    this.envConfig = {
      localSchedulerWebAddress: 'http://localhost:9889',
    };
  }