-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2415 from Avaiga/feature/enterprise#610-update-te…
…mplate-questions Feature - Update template questions
- Loading branch information
Showing
4 changed files
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"Application root folder name": "taipy_application", | ||
"Application root folder": "taipy_application", | ||
"Application main Python file": "main.py", | ||
"Application title": "Taipy Application", | ||
"Page names in multi-page application?": "", | ||
"Does the application use scenario management or version management?": "No", | ||
"Does the application use Rest API?": "No", | ||
"Do you want to initialize a new Git repository?": "No", | ||
"With multi-pages?\n\tEnter the page names separated by a space": "", | ||
"With scenario management?": "No", | ||
"With a Rest API?": "No", | ||
"With a new Git repository?": "No", | ||
|
||
"__root_folder": "{{ cookiecutter['Application root folder name'] | replace(' ','-') }}", | ||
"__root_folder": "{{ cookiecutter['Application root folder'] | replace(' ','-') }}", | ||
"__main_file": "{{ cookiecutter['Application main Python file'][:-3] if cookiecutter['Application main Python file'].endswith('.py') else cookiecutter['Application main Python file'] }}", | ||
"__application_title": "{{ cookiecutter['Application title'] }}", | ||
"__pages": "{{ cookiecutter['Page names in multi-page application?'] }}", | ||
"__orchestrator": "{{ cookiecutter['Does the application use scenario management or version management?'] }}", | ||
"__rest": "{{ cookiecutter['Does the application use Rest API?'] }}", | ||
"__git": "{{ cookiecutter['Do you want to initialize a new Git repository?']}}" | ||
"__pages": "{{ cookiecutter['With multi-pages?\n\tEnter the page names separated by a space'] }}", | ||
"__orchestrator": "{{ cookiecutter['With scenario management?'] }}", | ||
"__rest": "{{ cookiecutter['With a Rest API?'] }}", | ||
"__git": "{{ cookiecutter['With a new Git repository?']}}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"Application root folder name": "taipy_application", | ||
"Application root folder": "taipy_application", | ||
"Application main Python file": "main.py", | ||
"Application title": "Taipy Application", | ||
"Does the application use TOML Config?": "No", | ||
"Do you want to initialize a new Git repository?": "No", | ||
"With TOML Config?": "No", | ||
"With a new Git repository?": "No", | ||
|
||
"__root_folder": "{{ cookiecutter['Application root folder name'] | replace(' ','-') }}", | ||
"__root_folder": "{{ cookiecutter['Application root folder'] | replace(' ','-') }}", | ||
"__main_file": "{{ cookiecutter['Application main Python file'][:-3] if cookiecutter['Application main Python file'].endswith('.py') else cookiecutter['Application main Python file'] }}", | ||
"__application_title": "{{ cookiecutter['Application title'] }}", | ||
"__use_toml_config": "{{ cookiecutter['Does the application use TOML Config?'] }}", | ||
"__git": "{{ cookiecutter['Do you want to initialize a new Git repository?']}}" | ||
"__use_toml_config": "{{ cookiecutter['With TOML Config?'] }}", | ||
"__git": "{{ cookiecutter['With a new Git repository?']}}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters