Skip to content

Commit 3c407cd

Browse files
authored
Restore feature flag for Launch with FC (#68)
dockstore/ga4gh#2235
1 parent df6c410 commit 3c407cd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

install_bootstrap

+5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ GOOGLE_CLIENT_SECRET=''
4040
LOGSTASH=''
4141
LOGSTASH_HOST=''
4242
ENABLE_CWL_VIEWER=''
43+
ENABLE_LAUNCH_WITH_FIRECLOUD=''
4344
FIRECLOUD_IMPORT_URL=''
4445
TERRA_IMPORT_URL=''
4546
GOOGLE_VERIFICATION_NAME=''
@@ -251,6 +252,9 @@ while [[ "${run_dockstore_launcher^^}" != 'Y' && "${run_dockstore_launcher^^}"
251252
enable_cwl_viewer='enable_cwl_viewer'
252253
ask_question "Do you want to enable CWL Viewer in DAG (true or false)?" "$ENABLE_CWL_VIEWER" "enable_cwl_viewer" $enable_cwl_viewer
253254

255+
enable_launch_with_firecloud='enable_launch_with_firecloud'
256+
ask_question "Do you want to enable Launch with FireCloud (true or false)?" "$ENABLE_LAUNCH_WITH_FIRECLOUD" "enable_launch_with_firecloud" $enable_launch_with_firecloud
257+
254258
firecloud_import_url='firecloud_import_url'
255259
ask_question "What is the Launch with FireCloud base url? Unless it's a staging FC enviornment, it should be https://portal.firecloud.org/#import/dockstore" "$FIRECLOUD_IMPORT_URL" "firecloud_import_url" $firecloud_import_url
256260

@@ -302,6 +306,7 @@ while [[ "${run_dockstore_launcher^^}" != 'Y' && "${run_dockstore_launcher^^}"
302306
"LOGSTASH":${logstash},
303307
"LOGSTASH_HOST":"${logstash_host}",
304308
"ENABLE_CWL_VIEWER":"${enable_cwl_viewer}",
309+
"ENABLE_LAUNCH_WITH_FIRECLOUD":"${enable_launch_with_firecloud}",
305310
"FIRECLOUD_IMPORT_URL":"${firecloud_import_url}",
306311
"TERRA_IMPORT_URL":"${terra_import_url}",
307312
"AUTHORIZER_TYPE":"${authorizer_type}",

templates/dockstore.model.ts.template

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export class Dockstore {
4343
static readonly CWL_VISUALIZER_URI = 'https://view.commonwl.org';
4444

4545
static readonly FEATURES = {
46-
enableCwlViewer: {{ ENABLE_CWL_VIEWER }}
46+
enableCwlViewer: {{ ENABLE_CWL_VIEWER }},
47+
enableLaunchWithFireCloud: {{ ENABLE_LAUNCH_WITH_FIRECLOUD }}
4748
}
4849

4950
}

0 commit comments

Comments
 (0)