1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-21 13:38:56 +02:00
focalboard/modd.conf
Miguel de la Cruz 9086246fb5
Adds modd based targets that watch both server and webapp (#1257)
* Adds modd based targets that watch both server and webapp

* Add modd precheck to related targets
2021-09-22 15:40:04 +02:00

11 lines
227 B
Plaintext

**/*.go !**/*_test.go {
indir: server
prep: go build -o ../bin/focalboard-server ./main
daemon +sigterm: cd .. && ./bin/focalboard-server $FOCALBOARDSERVER_ARGS
}
{
indir: webapp
daemon: npm run watchdev
}