mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
4ebe8c1270
Make `air` log less. Uses the option added in https://github.com/air-verse/air/pull/367. (cherry picked from commit 1c1545268743d7d4536a5ff2a137af7c255f45c8)
29 lines
822 B
TOML
29 lines
822 B
TOML
root = "."
|
|
tmp_dir = ".air"
|
|
|
|
[build]
|
|
pre_cmd = ["killall -9 gitea 2>/dev/null || true"] # kill off potential zombie processes from previous runs
|
|
cmd = "make --no-print-directory backend"
|
|
bin = "gitea"
|
|
delay = 2000
|
|
include_ext = ["go", "tmpl"]
|
|
include_file = ["main.go"]
|
|
include_dir = ["cmd", "models", "modules", "options", "routers", "services"]
|
|
exclude_dir = [
|
|
"models/fixtures",
|
|
"models/migrations/fixtures",
|
|
"modules/avatar/identicon/testdata",
|
|
"modules/avatar/testdata",
|
|
"modules/git/tests",
|
|
"modules/migration/file_format_testdata",
|
|
"modules/markup/tests/repo/repo1_filepreview",
|
|
"routers/private/tests",
|
|
"services/gitdiff/testdata",
|
|
"services/migrations/testdata",
|
|
"services/webhook/sourcehut/testdata",
|
|
]
|
|
exclude_regex = ["_test.go$", "_gen.go$"]
|
|
stop_on_error = true
|
|
|
|
[log]
|
|
main_only = true
|