view Makefile @ 485:ddff2dfaa572

downloads: update latest python 2.6 compatible release Replace link from 4.2.2 to 4.2.3 after the security exceptional release.
author Boris Feld <boris.feld@octobus.net>
date Mon, 14 Aug 2017 14:12:11 +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