Add serve command to makefile for easy testing

This commit is contained in:
Tom Willemse 2022-07-14 22:29:36 -07:00
parent 799720ee2c
commit 6edcc99f08

View file

@ -30,3 +30,6 @@ clean: ## Remove all of the build files
@rm -rvf *.elc
@rm -rvf public
@rm -rvf .org-timestamps
serve: ## Run a simple web server to look at the results
@cd public && php -S localhost:8000