From 908aafc404967472f0f3429779d3667799880a19 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 8 Nov 2010 13:18:59 +0000 Subject: [PATCH] Add rabbitmq settings for live --- fabfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 98d0484..9c1f3cc 100644 --- a/fabfile.py +++ b/fabfile.py @@ -10,7 +10,9 @@ def production(): "Use the production enviroment on Web1" env.hosts = ['dreddit@web1.pleaseignore.com'] env.path = '/home/dreddit/apps' - + env.user = 'auth' + env.vhost = 'auth' + env.password = sha1('%s-%s' % (env.user, env.vhost)).hexdigest() def test(): "Use the test enviroment on Web2"