Fix fabfile for new server.

rtd2
Eric Holscher 2010-11-13 09:38:20 -06:00
parent 80ef09d6bc
commit 3752c2d1f1
1 changed files with 4 additions and 4 deletions

8
fabfile.py vendored
View File

@ -3,11 +3,11 @@ from fabric.api import *
from fabric.contrib import files, console
env.runtime = 'production'
env.hosts = ['readthedocs.org']
env.hosts = ['chimera.ericholscher.com']
env.user = 'docs'
env.code_dir = '/home/docs/sites/readthedocs.com/checkouts/tweezers'
env.virtualenv = '/home/docs/sites/readthedocs.com'
env.rundir = '/home/docs/sites/readthedocs.com/run'
env.code_dir = '/home/docs/sites/readthedocs.org/checkouts/readthedocs.org'
env.virtualenv = '/home/docs/sites/readthedocs.org'
env.rundir = '/home/docs/sites/readthedocs.org/run'
def update_requirements():
"Update requirements in the virtualenv."