-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathair.toml
More file actions
49 lines (38 loc) · 1.08 KB
/
Copy pathair.toml
File metadata and controls
49 lines (38 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
root = "."
testdata_dir = "testdata"
tmp_dir = "tmp"
[build]
# Commande pour compiler l'application
cmd = "go build -o ./tmp/main ./local-main.go"
# Binaire à exécuter
bin = "tmp/main"
# Fichiers/dossiers à surveiller
include_ext = ["go", "tpl", "tmpl", "html", "yaml", "yml", "json", "env"]
# Exclure certains fichiers/dossiers
exclude_dir = ["assets", "tmp", "vendor", "testdata", ".git", ".vscode", ".idea"]
exclude_file = []
exclude_regex = ["_test.go"]
exclude_unchanged = false
follow_symlink = false
full_bin = ""
# Tuer l'ancien processus avant de redémarrer
kill_delay = "0s"
# Envoyer le signal interrupt avant SIGKILL (par défaut SIGTERM)
send_interrupt = false
# Délai après l'envoi du signal interrupt avant d'envoyer SIGKILL
stop_on_root = ""
[color]
# Couleurs pour les logs
main = "magenta"
watcher = "cyan"
build = "yellow"
runner = "green"
[log]
# Afficher les logs d'Air
main_only = false
[misc]
# Nettoyer lors de l'arrêt
clean_on_exit = false
[screen]
clear_on_rebuild = false
keep_scroll = true