view Makefile @ 493:5284da57c604 default tip

display needed flag option to send patch for the website
author "Stephane" <stephane@yaal.fr>
date Mon, 26 Oct 2020 14:55:33 +0100
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