18 lines
647 B
TOML
18 lines
647 B
TOML
# Config file for [Air](https://github.com/cosmtrek/air) in TOML format
|
|
|
|
# Working directory
|
|
# . or absolute path, please note that the directories following must be under root.
|
|
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
# Just plain old shell command. You could use `make` as well.
|
|
cmd = "go build -gcflags=all=\"-N -l\" -o ./tmp/main ./cmd/api/main.go"
|
|
# Binary file yields from `cmd`.
|
|
bin = "tmp/main"
|
|
# Customize binary.
|
|
full_bin = "dlv exec --accept-multiclient --log --log-output=rpc,debugger --headless --continue --listen='0.0.0.0:40000' --api-version=2 ./tmp/main"
|
|
|
|
# Watch these filename extensions.
|
|
include_ext = ["go", "tpl", "tmpl", "html"]
|