diff options
Diffstat (limited to 'fabfile/setups.py')
-rw-r--r-- | fabfile/setups.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fabfile/setups.py b/fabfile/setups.py index f4d1de8..264b237 100644 --- a/fabfile/setups.py +++ b/fabfile/setups.py @@ -11,7 +11,7 @@ def stage(): """ env.stage = True env.git_branch = 'master' - env.hosts = ['oberon.sublab.org'] + env.hosts = ['subweb@oberon.sublab.org'] env.home = '/home/subweb' env.root = join_path(env.home, 'stage') finalize() @@ -23,7 +23,7 @@ def production(): """ env.stage = False env.git_branch = 'master' - env.hosts = ['oberon.sublab.org'] + env.hosts = ['subweb@oberon.sublab.org'] env.home = '/home/subweb' env.root = join_path(env.home, 'production') finalize() @@ -37,3 +37,4 @@ def finalize(): env.pip_file = join_path(env.src_root, 'requirements.txt') env.proj_root = join_path(env.src_root, 'sublab_project') env.manage_py = join_path(env.proj_root, 'manage.py') + env.git_url = 'git://git.sublab.org/subweb.git' |