25 lines
400 B
Plaintext
25 lines
400 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/static/dist" \
|
|
./bin/server
|
|
}
|
|
|
|
{
|
|
daemon: [ ! -z "$(which node)" ] && cd cmd/server && npm run watch
|
|
}
|
|
|
|
**/*.go
|
|
modd.conf
|
|
Makefile {
|
|
prep: make lint LINT_ARGS=--fast
|
|
prep: make test
|
|
}
|
|
|