From 567cbf5f830a2cd860d9c94794f2dd86f6510b12 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 6 Jun 2013 15:01:49 +0200 Subject: [PATCH] Update fabfile according to new demo instance install --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index d3866b0f..f786dd7d 100644 --- a/fabfile.py +++ b/fabfile.py @@ -44,9 +44,9 @@ def dev(): } env.system_users = {server: 'www-data'} env.virtualenv_dir = '/home/ybon/.virtualenvs/{project_name}'.format(**env) - env.project_dir = '/home/ybon/dev/{project_name}'.format(**env) + env.project_dir = '/home/ybon/src/{project_name}'.format(**env) env.project_conf = '{project_name}.settings.local'.format(**env) - env.restart_command = '{virtualenv_dir}/bin/circusctl restart {project_name}'.format(**env) + env.restart_command = '/home/ybon/.virtualenvs/circus/bin/circusctl restart {project_name}'.format(**env) # Set the default environment.