Files
api-golang/.air.toml
Flavio Fois 9aa188af8c update air configuration for binary name and additional file extensions
Rename the output binary to emly-api.exe and expand the watcher to include .env, .sql, and .tmpl files. Additional directories like .idea, .vscode, and .claude are now excluded from the build watch.
2026-03-23 08:42:26 +01:00

6 lines
219 B
TOML

[build]
entrypoint = ["./tmp/emly-api.exe"]
cmd = "go build -o ./tmp/emly-api.exe ."
include_ext = ["go", ".env", ".sql", ".tmpl"]
exclude_dir = ["tmp", "vendor", "build", ".git", ".claude", ".idea", ".vscode"]