view Makefile @ 492:0cd22a550a68

about: replace OpenJDK repository example by nginx repository OpenJDK does not use Mercurial anymore and nginx uses it.
author "Stephane" <stephane@yaal.fr>
date Mon, 12 Oct 2020 17:07:26 +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