fabfile.py @ c631e35b5827 initial-docs
docs: add a section about deploying a public web ui
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Sat, 03 Jul 2010 15:12:25 -0400 |
| parents | 96d10fd456cf |
| children | 26b710ccba73 |
from __future__ import with_statement from fabric.api import * def demo(): env.hosts += ['stevelosh.com:22779'] env.data_repo = '/var/www/review.stevelosh.com/data' env.tool_repo = '/var/www/review.stevelosh.com/hg-review' env.supervisord_program = 'gunicorn-review-hg-review' def deploy(): run('hg -R %s pull' % env.data_repo) run('hg -R %s pull --update' % env.tool_repo) sudo('supervisorctl restart %s' % env.supervisord_program)