orion/modd.conf

25 lines
400 B
Plaintext
Raw Permalink 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" \
2019-02-12 10:17:06 +01:00
ORION_ASSET_DIR="cmd/server/static/dist" \
2018-12-06 22:12:32 +01:00
./bin/server
2018-09-17 14:17:54 +02:00
}
2019-02-12 10:17:06 +01:00
{
daemon: [ ! -z "$(which node)" ] && cd cmd/server && npm run watch
}
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
}