From 42ef6900add12baf5a11795c078fed4476a3d6e0 Mon Sep 17 00:00:00 2001 From: Eric Franz <efranz@osc.edu> Date: Tue, 12 Sep 2017 11:05:25 -0400 Subject: [PATCH] specify title of app only in manifest.yml the only benefit of specifying the title in the form.yml is when we have "subapps", where each subapp needs a different title; otherwise the manifest.yml can be used this way we can maintain for all our apps that the basic way you change the title of the app is to specify name in the manifest --- form.yml | 3 --- manifest.yml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/form.yml b/form.yml index 8322c88..c2cbdf8 100644 --- a/form.yml +++ b/form.yml @@ -10,9 +10,6 @@ # cluster: "owens" cluster: "" -# Title of the app displayed in the Dashboard -title: "Jupyter Notebook" - # Description of the app displayed in the Dashboard (can use multi-line string # and Markdown syntax) description: | diff --git a/manifest.yml b/manifest.yml index fd5bb31..a1b3748 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ --- -name: Jupyter +name: Jupyter Notebook category: Interactive Apps subcategory: Servers role: batch_connect -- GitLab