forgejo/.fswatch.json

21 lines
369 B
JSON
Raw Normal View History

2014-04-06 17:12:19 +02:00
{
2014-04-06 18:19:59 +02:00
"paths": ["."],
2014-04-06 17:12:19 +02:00
"depth": 2,
"exclude": [
2014-04-06 18:19:59 +02:00
"^gogs$",
2014-04-06 17:12:19 +02:00
"~$",
"\\.swp$",
"\\.exe$",
2014-04-06 18:19:59 +02:00
"\\.swx$",
".*\\.log$"
2014-04-06 17:12:19 +02:00
],
2014-04-06 18:19:59 +02:00
"include": ["\\.go$"],
2014-04-06 17:12:19 +02:00
"command": [
"bash", "-c", "go build && ./gogs web"
],
"env": {
2014-04-06 18:19:59 +02:00
"POWERED_BY": "github.com/shxsun/fswatch"
2014-04-06 17:12:19 +02:00
},
"enable-restart": false
}