view Makefile @ 484:a39012663778

downloads: reflect Python 2.6 deprecation Mercurial 4.3 drops support for Python 2.6. Update the downloads page to reflect that.
author Gregory Szorc <gregory.szorc@gmail.com>
date Fri, 28 Jul 2017 22:28:24 -0700
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