2020-01-16 10:27:46 +00:00
|
|
|
---
|
|
|
|
title: Default settings
|
|
|
|
---
|
|
|
|
|
2020-06-03 14:22:56 +00:00
|
|
|
<!-- prettier-ignore-start -->
|
2020-06-02 20:17:46 +00:00
|
|
|
<!-- markdownlint-disable -->
|
2020-06-07 14:29:44 +00:00
|
|
|
<!-- spellchecker-disable -->
|
2020-01-16 10:27:46 +00:00
|
|
|
{{< highlight YAML "linenos=table" >}}
|
|
|
|
---
|
|
|
|
# default is your current working dir
|
|
|
|
role_dir:
|
2020-01-22 12:07:05 +00:00
|
|
|
# default is the basename of 'role_name'
|
|
|
|
role_name:
|
2020-06-02 20:17:46 +00:00
|
|
|
# don't write anything to file system
|
2020-01-16 10:27:46 +00:00
|
|
|
dry_run: False
|
|
|
|
|
|
|
|
logging:
|
|
|
|
# possible options debug | info | warning | error | critical
|
|
|
|
level: "warning"
|
|
|
|
# you can enable json logging if a parsable output is required
|
|
|
|
json: False
|
|
|
|
|
|
|
|
# path to write rendered template file
|
|
|
|
# default is your current working dir
|
|
|
|
output_dir:
|
|
|
|
# default is in-build templates dir
|
|
|
|
template_dir:
|
|
|
|
template: readme
|
|
|
|
|
|
|
|
# don't ask to overwrite if output file exists
|
|
|
|
force_overwrite: False
|
|
|
|
# load custom header from given file and append template output
|
|
|
|
# to it before write.
|
|
|
|
custom_header: ""
|
|
|
|
|
|
|
|
exclude_files: []
|
|
|
|
# Examples
|
|
|
|
# exclude_files:
|
|
|
|
# - molecule/
|
|
|
|
# - files/**/*.py
|
|
|
|
{{< /highlight >}}
|
2020-06-07 14:29:44 +00:00
|
|
|
<!-- spellchecker-enable -->
|
2020-06-03 13:38:00 +00:00
|
|
|
<!-- markdownlint-restore -->
|
2020-06-03 14:22:56 +00:00
|
|
|
<!-- prettier-ignore-end -->
|