# Air Tomb Configuration for ULFlow Starter Kit root = "." tmp_dir = "tmp" [build] # Just plain old shell command. You could use `make` as well. cmd = "go build -o ./tmp/main.exe ./cmd/app" # Binary file yields from `cmd`. bin = "tmp/main.exe" # Customize binary. full_bin = "./tmp/main.exe" # Watch these filename extensions. include_ext = ["go", "tpl", "tmpl", "html"] # Ignore these filename extensions or directories. exclude_dir = ["assets", "tmp", "vendor", ".git", "node_modules"] # Watch these directories if you specified. include_dir = [] # Exclude files. exclude_file = [] # This log file places in your tmp_dir. log = "air.log" # It's not necessary to trigger build each time file changes if it's too frequent. delay = 1000 # ms # Stop running old binary when build errors occur. stop_on_error = true # Send Interrupt signal before killing process (windows does not support this feature) send_interrupt = true # Delay after sending Interrupt signal kill_delay = 500 # ms [log] # Show log time time = true [color] # Customize each part's color. main = "magenta" watcher = "cyan" build = "yellow" runner = "green" [misc] # Delete tmp directory on exit clean_on_exit = true [screen] clear_on_rebuild = true keep_scroll = true [tomb] # Enable Tomb for graceful shutdown enabled = true # Kill signal to use for graceful shutdown signal = "SIGTERM" # Timeout for graceful shutdown timeout = "5s" # Path to the tomb config file config = "./tomb.yaml"