chore: fix wt.toml to copy any .env*

This commit is contained in:
Felarof
2026-01-08 12:30:26 -08:00
parent 9854870291
commit 3a870d4d8e

View File

@@ -1,7 +1,8 @@
[post-create]
install = "bun install"
env-server = "cp {{ repo_root }}/apps/server/.env.development apps/server/.env.development"
env-agent = "cp {{ repo_root }}/apps/agent/.env.development apps/agent/.env.development"
# env-server = "cp {{ repo_root }}/apps/server/.env.development apps/server/.env.development"
# env-agent = "cp {{ repo_root }}/apps/agent/.env.development apps/agent/.env.development"
env = "for f in {{ repo_root }}/apps/*/.env.*; do [ -f \"$f\" ] && cp \"$f\" \"${f#{{ repo_root }}/}\"; done 2>/dev/null || true"
llm = "cp -r {{ repo_root }}/.llm . 2>/dev/null || true"
[pre-remove]