17 lines
556 B
YAML
17 lines
556 B
YAML
|
---
|
||
|
|
||
|
## General
|
||
|
# Version
|
||
|
{{ cookiecutter.app_name }}_version: 1.0.0
|
||
|
|
||
|
# {{ cookiecutter.app_name }} paths
|
||
|
{{ cookiecutter.app_name }}_root_path: /opt/{{ cookiecutter.app_name }}
|
||
|
{{ cookiecutter.app_name }}_config_path: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_root_path {% raw %}}}{% endraw %}/conf"
|
||
|
{{ cookiecutter.app_name }}_skeleton_paths:
|
||
|
- "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_config_path {% raw %}}}{% endraw %}"
|
||
|
|
||
|
# Documentation
|
||
|
{{ cookiecutter.app_name }}_documentation_link: "{{ cookiecutter.documentation_URL }}"
|
||
|
|
||
|
|