17 lines
235 B
TOML
17 lines
235 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
cmd = "go build -o ./tmp/cmd.exe ./cmd"
|
|
bin = "./tmp/cmd.exe"
|
|
delay = 500
|
|
exclude_dir = ["tmp", "vendor"]
|
|
include_ext = ["go"]
|
|
exclude_file = ["*.md"]
|
|
|
|
[log]
|
|
time = true
|
|
|
|
[env]
|
|
APP_ENV="development"
|