view Makefile @ 489:175611e81401

footer: remove Google plus link
author "Stephane" <stephane@yaal.fr>
date Wed, 23 Sep 2020 12:17:53 +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