Files
consult-template/repo_vars/vars.yml

61 lines
1.7 KiB
YAML

---
document_title: "Home Performance Report"
template:
repo:
url: "https://git.housh.dev/hhe/consult-template.git"
version: "main"
# Files to copy to the project directory when setting up a new consult project.
#
# These can be specified as a single item which is a path to the file
# to copy. Or a dict that includes the following:
#
# src: "/path/to/the/file"
# dest: "FileName"
# mode: '0600' # optional mode, defaults to 0600
copy_on_setup:
- src: "project/"
dest: "{{ project_dir }}"
# - src: "project_files/Report.md"
# dest: "Report.md"
# - src: "project_files/vars.yml"
# dest: "vars.yml"
# - src: "project_files/vault.yml"
# dest: "vault.yml"
# - src: "project_directories/img/"
# dest: img
# - src: "project_directories/Airflow/"
# dest: Airflow
# - src: "project_directories/ManJ/"
# dest: ManJ
# - src: project_files/project.gitignore
# dest: .gitignore
# - src: project_files/project.justfile
# dest: justfile
# Files to copy to the build directory when building a consult document.
#
# These can be specified as a single item which is a path to the file
# to copy. Or a dict that includes the following:
#
# src: "/path/to/the/file"
# dest: "Name"
# mode: '0600' # optional mode, defaults to 0600
copy_on_build:
- "{{ template_path }}/Definitions.md"
- "{{ template_path }}/head.tex"
# Files to fill with their template values and copy to the build directory.
#
# These can be specified as a single item which is a path to the file
# to copy. Or a dict that includes the following:
#
# src: "/path/to/the/file"
# dest: "Name"
# mode: '0600' # optional mode, defaults to 0600
template_on_build:
- "{{ template_path }}/footer.tex"
- "{{ project_dir }}/Report.md"