portfolio/Makefile
2022-06-21 12:33:35 +02:00

11 lines
194 B
Makefile

.SILENT:
.PHONY: server serve help test dev
PORT?=8000
HOST?=0.0.0.0
serve: server
dev: server
server:
php -S $(HOST):$(PORT) -t public
test:
php ./vendor/bin/phpunit --stop-on-failure tests