add fswatch.json for hot compile

This commit is contained in:
skyblue 2014-04-06 23:12:19 +08:00
parent 1336d8d54d
commit a04918e36d
1 changed files with 22 additions and 0 deletions

22
.fswatch.json Normal file
View File

@ -0,0 +1,22 @@
{
"paths": [
"."
],
"depth": 2,
"exclude": [
"^gogs$",
"~$",
"\\.swp$",
"\\.exe$",
"\\.swx$",
".*\\.log$"
],
"include": [],
"command": [
"bash", "-c", "go build && ./gogs web"
],
"env": {
"PROGRAM": "fswatch"
},
"enable-restart": false
}