view Makefile @ 477:aec3b193e5af

fix indentation of download button content
author Kevin Bullock <kbullock+mercurial@ringworld.org>
date Wed, 10 May 2017 11:46:48 -0500
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