17 lines
167 B
Plaintext
17 lines
167 B
Plaintext
**/*.go
|
|
!**/*_test.go
|
|
modd.conf
|
|
.env
|
|
Makefile {
|
|
prep: make build
|
|
daemon: [ -e .env ] && . .env; ./bin/server
|
|
}
|
|
|
|
|
|
**/*.go
|
|
modd.conf
|
|
Makefile {
|
|
prep: make test
|
|
}
|
|
|