1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Example runfile for `oa run`
#
# Usage: oa run example_runfile.toml
#
# This file defines batch jobs. Each job links a template PPTX
# to an Excel data file and produces an output PPTX.
# Prepended to relative data paths in [[job]] entries
= "../data"
# Output path template — {name} is replaced with the job name
= "output/{name}.pptx"
# Template aliases (short names for template files)
[]
= "templates/market_report_template.pptx"
# Optional: only run specific pipeline steps (default: all)
# steps = ["links", "tables", "deltas", "coloring", "charts"]
# Optional: config overrides
# [config]
# ccst.positive_prefix = ""
# links.set_manual = true
# --- Jobs ---
[[]]
= "Australia"
= "t1"
= "tracking_australia.xlsx"
[[]]
= "Japan"
= "t1"
= "tracking_japan.xlsx"
[[]]
= "Germany"
= "t1"
= "tracking_germany.xlsx"
# Per-job output override
[[]]
= "United_States"
= "t1"
= "tracking_united_states.xlsx"
= "special/us_report.pptx"