mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
17 lines
312 B
TOML
17 lines
312 B
TOML
# Working directory
|
|
root = "."
|
|
|
|
# The main Go file
|
|
main = "main.go"
|
|
|
|
bin = "tmp/main.exe"
|
|
|
|
# Watching all Go files, excluding certain directories
|
|
[build]
|
|
cmd = "go build -o ./tmp/main.exe main.go"
|
|
include_ext = ["go"]
|
|
exclude_dir = ["fe", "panels", "builds"]
|
|
|
|
# Restart on file changes
|
|
[log]
|
|
time = true
|