Mercurial > hg-website
comparison Makefile @ 473:f8cee73d5cf0
Makefile: drop old deployment rules
We use a different machine now and the process on it is automated. Thanks goes
to David Soria Parra for pointing this out.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Fri, 30 Dec 2016 10:52:08 +0100 |
parents | d910d5ce9b0b |
children |
comparison
equal
deleted
inserted
replaced
472:ef6da0fd2a0c | 473:f8cee73d5cf0 |
---|---|
1 all:: serve | 1 all:: serve |
2 | |
3 deploy-ssh: | |
4 ssh selenic 'cd /home/hg/www && hg pull -u' | |
5 | |
6 deploy: | |
7 cd /home/hg/www && hg pull -u | |
8 | 2 |
9 serve: .env | 3 serve: .env |
10 HGWEBSITE_DEBUG=1 .env/bin/python hgwebsite.py | 4 HGWEBSITE_DEBUG=1 .env/bin/python hgwebsite.py |
11 | 5 |
12 .env: | 6 .env: |
13 python -m virtualenv .env | 7 python -m virtualenv .env |
14 .env/bin/pip install flask | 8 .env/bin/pip install flask |
15 | 9 |
16 .PHONY: build deploy-ssh deploy serve | 10 .PHONY: build serve |