assemblrr/Makefile
soulis-1256 1fd188a5c4
Use .env.example as the env template and cover it with tests
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.
2026-08-05 14:01:04 +03:00

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