diff options
| author | t <t@tjp.lol> | 2026-07-11 14:06:25 -0600 |
|---|---|---|
| committer | t <t@tjp.lol> | 2026-07-11 19:59:46 -0600 |
| commit | 48352c770a932bd628cc5eb22ea3b899b041c485 (patch) | |
| tree | 46f0ff0c4d206db8b5f0fd1d27555d55a20940ab /.air.toml | |
| parent | 9cd3f87dd63bff27acbe3966e90f3b689e898b93 (diff) | |
Configure local site builds and note synchronization
Add Air and mise configuration for local rebuilds, record generated output
paths, and update the documented sync workflow.
Diffstat (limited to '.air.toml')
| -rw-r--r-- | .air.toml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.air.toml b/.air.toml new file mode 100644 index 0000000..1d968d1 --- /dev/null +++ b/.air.toml @@ -0,0 +1,44 @@ +root = "." +tmp_dir = ".air" + +[build] +args_bin = [] +bin = "" +cmd = "mise run gen" +delay = 250 +exclude_dir = [".air", ".git", ".jj", "_docs"] +exclude_file = [] +exclude_regex = [] +exclude_unchanged = true +follow_symlink = true +full_bin = "python3 -m http.server 8000 --bind 127.0.0.1" +include_dir = [] +include_ext = ["css", "md", "tmpl"] +include_file = [] +kill_delay = "500ms" +log = "build-errors.log" +poll = false +poll_interval = 0 +post_cmd = [] +pre_cmd = [] +rerun = false +rerun_delay = 500 +send_interrupt = true +stop_on_error = false + +[log] +main_only = false +silent = false +time = false + +[misc] +clean_on_exit = true + +[proxy] +app_port = 8000 +enabled = true +proxy_port = 8001 + +[screen] +clear_on_rebuild = false +keep_scroll = true |
