Skip to content

Commit

Permalink
Merge pull request #115 from at-gmbh/feature/human-readable-prompts
Browse files Browse the repository at this point in the history
Adding human readable prompts
  • Loading branch information
klamann authored Oct 25, 2023
2 parents 06b6403 + 5fb9e2a commit c37faa8
Showing 1 changed file with 53 additions and 1 deletion.
54 changes: 53 additions & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,57 @@
"create_cli": ["no", "yes"],
"config_file": ["none", "hocon", "yaml"],
"code_formatter": ["none", "black"],
"editor_settings": ["none", "pycharm", "vscode"]
"editor_settings": ["none", "pycharm", "vscode"],
"__prompts__": {
"full_name": "What's your [bold yellow]name[/]?",
"company_name": "Enter your [bold yellow]company name[/]; leave empty if not applicable",
"email": "What's your [bold yellow]email address[/]?",
"project_name": "Please provide the [bold yellow]full name of your project[/], as it would appear in a headline",
"project_slug": "Please provide a [bold yellow]slug[/], which is the project name as it would appear in a URL, or accept this suggestion",
"module_name": "Please provide a [bold yellow]module name[/] for your project. Make it short, if possible, and use underscores instead of whitespace",
"project_short_description": "Provide a [bold yellow]short description[/] for the project in one sentence",
"package_manager": {
"__prompt__": "Which [bold yellow]packaging tool[/] would you like to use?",
"conda": "conda (environment.yml)",
"pip": "pip (setup.py)",
"poetry": "poetry (pyproject.toml)"
},
"use_notebooks": {
"__prompt__": "Do you want to include [bold yellow]Jupyter Notebooks[/] in your project?",
"no": "No",
"yes": "Yes"
},
"use_docker": {
"__prompt__": "Do you want to use [bold yellow]Docker[/]?",
"no": "No",
"yes": "Yes"
},
"ci_pipeline": {
"__prompt__": "What [bold yellow]CI pipeline[/] would you like to use?",
"none": "None",
"gitlab": "GitLab CI"
},
"create_cli": {
"__prompt__": "Do you want to create a [bold yellow]CLI[/] for your project?",
"no": "No",
"yes": "Yes"
},
"config_file": {
"__prompt__": "Which [bold yellow]config file format[/] do you prefer?",
"none": "None",
"hocon": "HOCON",
"yaml": "YAML"
},
"code_formatter": {
"__prompt__": "What [bold yellow]code formatter[/] would you like to use?",
"none": "None",
"black": "Black"
},
"editor_settings": {
"__prompt__": "Which [bold yellow]editor settings[/] do you want to include?",
"none": "None",
"pycharm": "PyCharm",
"vscode": "VS Code"
}
}
}

0 comments on commit c37faa8

Please sign in to comment.