正在显示
3 个修改的文件
包含
50 行增加
和
1 行删除
.air.toml
0 → 100644
1 | +# Config file for [Air](https://github.com/cosmtrek/air) in TOML format | ||
2 | + | ||
3 | +# Working directory | ||
4 | +# . or absolute path, please note that the directories following must be under root. | ||
5 | +root = "." | ||
6 | +tmp_dir = "tmp" | ||
7 | + | ||
8 | +[build] | ||
9 | +# Just plain old shell command. You could use `make` as well. | ||
10 | +cmd = "go build -o ./tmp/main ." | ||
11 | +# Binary file yields from `cmd`. | ||
12 | +bin = "tmp/main" | ||
13 | +# Customize binary. | ||
14 | +full_bin = "APP_ENV=dev APP_USER=air ./tmp/main" | ||
15 | +# Watch these filename extensions. | ||
16 | +include_ext = ["go", "tpl", "tmpl", "html"] | ||
17 | +# Ignore these filename extensions or directories. | ||
18 | +exclude_dir = ["assets", "tmp", "vendor", "frontend/node_modules"] | ||
19 | +# Watch these directories if you specified. | ||
20 | +include_dir = [] | ||
21 | +# Exclude files. | ||
22 | +exclude_file = [] | ||
23 | +# Exclude unchanged files. | ||
24 | +exclude_unchanged = true | ||
25 | +# This log file places in your tmp_dir. | ||
26 | +log = "air.log" | ||
27 | +# It's not necessary to trigger build each time file changes if it's too frequent. | ||
28 | +delay = 1000 # ms | ||
29 | +# Stop running old binary when build errors occur. | ||
30 | +stop_on_error = true | ||
31 | +# Send Interrupt signal before killing process (windows does not support this feature) | ||
32 | +send_interrupt = false | ||
33 | +# Delay after sending Interrupt signal | ||
34 | +kill_delay = 500 # ms | ||
35 | + | ||
36 | +[log] | ||
37 | +# Show log time | ||
38 | +time = false | ||
39 | + | ||
40 | +[color] | ||
41 | +# Customize each part's color. If no color found, use the raw app log. | ||
42 | +main = "magenta" | ||
43 | +watcher = "cyan" | ||
44 | +build = "yellow" | ||
45 | +runner = "green" | ||
46 | + | ||
47 | +[misc] | ||
48 | +# Delete tmp directory on exit | ||
49 | +clean_on_exit = true |
@@ -54,7 +54,7 @@ func (controller *ColumnSettingController) CreateColumnSetting() { | @@ -54,7 +54,7 @@ func (controller *ColumnSettingController) CreateColumnSetting() { | ||
54 | 54 | ||
55 | /** | 55 | /** |
56 | * @Author SteveChan | 56 | * @Author SteveChan |
57 | - * @Description // 更新栏目设置 | 57 | + * @Description 更新栏目设置 |
58 | * @Date 22:52 2021/1/26 | 58 | * @Date 22:52 2021/1/26 |
59 | * @Param | 59 | * @Param |
60 | * @return | 60 | * @return |
tmp/main
0 → 100755
不能预览此文件类型
-
请 注册 或 登录 后发表评论