view Makefile @ 490:607484e88940

who: replace another reference to Java 7eaad1ed8c74 removed Java / OpenJDK from the list, but has forgotten to update this sentence.
author Manuel Jacob <me@manueljacob.de>
date Sun, 26 Jul 2020 05:01:42 +0200
parents f8cee73d5cf0
children
line wrap: on
line source

all:: serve

serve: .env
	HGWEBSITE_DEBUG=1 .env/bin/python hgwebsite.py

.env:
	python -m virtualenv .env
	.env/bin/pip install flask

.PHONY: build serve