2020-07-27 12:05:42 -06:00
|
|
|
root = "."
|
|
|
|
tmp_dir = ".air"
|
|
|
|
|
|
|
|
[build]
|
2024-04-15 02:24:36 -06:00
|
|
|
pre_cmd = ["killall -9 gitea 2>/dev/null || true"] # kill off potential zombie processes from previous runs
|
2023-05-24 14:11:04 -06:00
|
|
|
cmd = "make --no-print-directory backend"
|
2020-07-27 12:05:42 -06:00
|
|
|
bin = "gitea"
|
2024-04-15 02:24:36 -06:00
|
|
|
delay = 2000
|
2020-07-27 12:05:42 -06:00
|
|
|
include_ext = ["go", "tmpl"]
|
2023-04-22 12:53:00 -06:00
|
|
|
include_file = ["main.go"]
|
2022-12-26 23:00:34 -07:00
|
|
|
include_dir = ["cmd", "models", "modules", "options", "routers", "services"]
|
2024-03-20 20:17:59 -06:00
|
|
|
exclude_dir = [
|
|
|
|
"models/fixtures",
|
|
|
|
"models/migrations/fixtures",
|
|
|
|
"modules/avatar/identicon/testdata",
|
|
|
|
"modules/avatar/testdata",
|
|
|
|
"modules/git/tests",
|
|
|
|
"modules/migration/file_format_testdata",
|
|
|
|
"routers/private/tests",
|
|
|
|
"services/gitdiff/testdata",
|
|
|
|
]
|
2022-08-14 15:22:09 -06:00
|
|
|
exclude_regex = ["_test.go$", "_gen.go$"]
|
2023-04-30 16:31:16 -06:00
|
|
|
stop_on_error = true
|
2024-06-19 13:42:06 -06:00
|
|
|
|
|
|
|
[log]
|
|
|
|
main_only = true
|