feat: Begins updating variables to allow for local default file overrides

This commit is contained in:
2024-11-25 09:17:23 -05:00
parent 2568d38911
commit b3e1f90233

View File

@@ -31,14 +31,25 @@ home:
cfm50: "3,000"
lair: "1:1"
# NOTE: These generally do not need changed, unless debugging.
build_dir_name: ".build"
# NOTE: You generally want to pass this in when running the playbook.
work_dir: "{{ lookup('env', 'PWD') }}"
# NOTE: The below variables generally do not need changed, unless debugging or customizing files.
# Such as you want to add new definitions, customize the footer or change the
# build directory name, etc.
build_dir_name: ".build"
build_dir: "{{ work_dir }}/{{ build_dir_name }}"
# NOTE: These generally do not need changed, unless debugging or customizing files.
# Such as you want to add new definitions or customize the footer.
config:
default_files:
definitions: "files/Definitions.md"
footer: "templates/footer.tex"
head: "files/head.tex"
report_template: "templates/Report.md"
vars: "files/vars.default.yml"
vault: "files/vault.default.yml"
paths:
report_path: "{{ work_dir }}/Report.md"
footer_path: "templates/footer.tex"