view Makefile @ 463:4ec689699207

frontpage: use example repo from mercurial-scm.org The rendered result looks like this: """ $ hg clone https://www.mercurial- scm.org/repo/hello """ (It will be copied without any word breaks, the break is only visual.) The actual repo doesn't exist yet, but really should already, because the first thing new users will see when they try the old URL with 3.9-rc+ is a lengthy error message that Mercurial "could not negotiate a common security protocol (tls1.1+) with selenic.com..." Classy.
author Anton Shestakov <av6@dwimlabs.net>
date Fri, 22 Jul 2016 18:46:43 +0800
parents 89c7ce3d2ffe
children 94ad26ab1689
line wrap: on
line source

all:: build
build:
	python ../blatter/blatter/__init__.py blat

deploy-ssh:
	ssh selenic 'cd /home/hg/www && hg pull -u'
deploy:
	cd /home/hg/www && hg pull -u
serve:
	python ../blatter/blatter/__init__.py serve
.PHONY: build deploy-ssh deploy serve