Skip to content
Snippets Groups Projects
Commit d6468ded authored by Jim Sheckard's avatar Jim Sheckard
Browse files

Merge branch 'release/2.3.0-RC1' into 'main'

Release branch into main pre-deployment

See merge request !5
parents 09ed8193 849680b0
No related branches found
No related tags found
1 merge request!5Release branch into main pre-deployment
......@@ -8,7 +8,7 @@ case $DESTINATION in
USER=webapps
;;
test)
SERVER=archive-test.nrao.edu
SERVER=vlass-test.nrao.edu
USER=webapps
;;
prod)
......
......@@ -58,10 +58,12 @@ export class AppComponent {
switch (this.window.location.hostname) {
case 'archive-test.nrao.edu':
case 'data-test.nrao.edu':
case 'vlass-test.nrao.edu':
title = 'TEST | ' + title;
break;
case 'archive-new.nrao.edu':
case 'data.nrao.edu':
case 'vlass.nrao.edu':
// leave the title alone
break;
case 'webtest.aoc.nrao.edu':
......
......@@ -32,7 +32,7 @@ export class Job {
new JobQueue('SE Calibration', 'se_calibration'),
//new JobQueue('SE Cont', 'se_cont'),
new JobQueue('SE Continuum Image', 'se_continuum_imaging'),
new JobQueue('SE Coarse Cube Image', 'se_coarse_cube_image')
new JobQueue('SE Coarse Cube Image', 'se_coarse_cube_imaging')
];
static getQueueFromName(queueName: string): JobQueue {
......
......@@ -8,9 +8,13 @@ A service in angular will capture this info and add it to a service
switch (window.location.hostname) {
case 'archive-test.nrao.edu':
window.__env.configUrl = 'https://archive-test.nrao.edu/VlassMngr/services/configuration';
case 'data-test.nrao.edu':
case 'vlass-test.nrao.edu':
window.__env.configUrl = 'https://vlass-test.nrao.edu/VlassMngr/services/configuration';
break;
case 'archive-new.nrao.edu':
case 'data.nrao.edu':
case 'vlass.nrao.edu':
window.__env.configUrl = 'https://archive-new.nrao.edu/VlassMngr/services/configuration';
break;
case 'localhost':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment