150 - Add dev-test nix command

This commit is contained in:
myrmidex 2026-08-16 22:50:45 +02:00
parent 945a27b54f
commit 65f7bc5ad2

View file

@ -91,6 +91,10 @@ pkgs.mkShell {
podman-compose -f $COMPOSE_FILE exec app php artisan "$@"
}
dev-test() {
podman-compose -f $COMPOSE_FILE exec -T app php -d memory_limit=512M vendor/bin/phpunit "$@"
}
# ===================
# BUILD COMMANDS
# ===================
@ -139,6 +143,7 @@ pkgs.mkShell {
echo " dev-logs-db Tail database logs"
echo " dev-shell Shell into app container"
echo " dev-artisan <cmd> Run artisan command"
echo " dev-test [path] Run PHPUnit suite (CI invocation)"
echo " base-build Build and push base image"
echo ""
echo "Services:"