mirror of
https://github.com/soulis-1256/assemblrr.git
synced 2026-08-28 17:11:40 +00:00
Generate INSTALL_DIR/.env from .env.example via envsubst, drop templates/envsubst.env, and add a unit test that keeps the template keys aligned with setup. Tighten related docs and test helpers.
24 lines
588 B
Makefile
24 lines
588 B
Makefile
.PHONY: test test-unit test-compose test-integration lint help
|
|
|
|
help:
|
|
@echo "Targets:"
|
|
@echo " make test unit + compose config + shellcheck"
|
|
@echo " make test-unit pure shell unit tests"
|
|
@echo " make test-compose docker compose config validation"
|
|
@echo " make test-integration live watchdog test (needs ASSEMBLRR_ALLOW_LIVE_TEST=1)"
|
|
@echo " make lint shellcheck"
|
|
|
|
test:
|
|
./tests/run.sh all
|
|
|
|
test-unit:
|
|
./tests/run.sh unit
|
|
|
|
test-compose:
|
|
./tests/run.sh compose
|
|
|
|
test-integration:
|
|
./tests/run.sh integration
|
|
|
|
lint:
|
|
./tests/run.sh lint
|