orion/modd.conf

22 lines
322 B
Plaintext
Raw Normal View History

2018-09-17 14:17:54 +02:00
**/*.go
2018-09-18 18:07:40 +02:00
!**/*_test.go
2018-09-17 14:17:54 +02:00
modd.conf
.env
2018-12-06 22:12:32 +01:00
cmd/server/templates/**
2018-09-17 14:17:54 +02:00
Makefile {
prep: make build
2018-12-06 22:12:32 +01:00
daemon: [ -e .env ] && . .env; \
ORION_TEMPLATE_DIR="cmd/server/templates" \
ORION_ASSET_DIR="cmd/server/assets" \
./bin/server
2018-09-17 14:17:54 +02:00
}
**/*.go
modd.conf
Makefile {
2018-09-19 13:00:08 +02:00
prep: make lint LINT_ARGS=--fast
2018-09-17 14:17:54 +02:00
prep: make test
}