Skip to content
Snippets Groups Projects
env.js 653 B
Newer Older
/*
Environment Variables outside of angular.
This is so we can alter the contents of this file outside of doing a rebuild and deploy.
A service in angular will capture this info and add it to a service
 */
(function (window) {
  window.__env = window.__env || {};

  // API url
  // Local service
  // window.__env.configUrl = 'http://localhost:4200/VlassMngr/services/configuration';

  // "new home" on webtest after split
  window.__env.configUrl = 'https://webtest.aoc.nrao.edu/VlassMngr/services/configuration';

  // old home on webtest
  // window.__env.configUrl = 'http://webtest.aoc.nrao.edu:8080/VlassMngr/services/configuration';

}(this));