orion/modd.conf

22 lines
322 B
Plaintext

**/*.go
!**/*_test.go
modd.conf
.env
cmd/server/templates/**
Makefile {
prep: make build
daemon: [ -e .env ] && . .env; \
ORION_TEMPLATE_DIR="cmd/server/templates" \
ORION_ASSET_DIR="cmd/server/assets" \
./bin/server
}
**/*.go
modd.conf
Makefile {
prep: make lint LINT_ARGS=--fast
prep: make test
}