shiori/modd.conf

32 lines
297 B
Plaintext
Raw Normal View History

2020-08-06 18:15:50 +00:00
modd.conf
**/*.go {
prep: "
# run tests
2022-01-23 11:59:31 +00:00
make test
2020-08-06 18:15:50 +00:00
"
}
modd.conf
**/*.go
!**/*_test.go {
prep: "
# build
2022-01-23 11:59:31 +00:00
make build
2020-08-06 18:15:50 +00:00
"
}
modd.conf
internal/view/** {
prep: "
# compile static assets
go generate ./...
"
}
modd.conf
**/*.html
**/*.js
shiori {
2022-01-23 11:59:31 +00:00
daemon: make serve
2020-08-06 18:15:50 +00:00
}