-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
107 lines (76 loc) · 2.18 KB
/
fabfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import contextlib
from fabric.api import *
env.hosts = ['fiveninesix',]
env.use_ssh_config = True
server_project_dirs = {
'dev': '~/webapps/',
'prod': '~/webapps/llnyc',
}
server_virtualenvs = {
'dev': '',
'prod': 'llnyc',
}
supervisord_programs = {
'dev': '',
'prod': 'llnyc',
}
supervisord_conf = '~/var/supervisor/supervisord.conf'
@contextlib.contextmanager
def cdversion(version, subdir=''):
"""cd to the version indicated"""
with prefix('cd %s' % '/'.join([server_project_dirs[version], subdir])):
yield
@contextlib.contextmanager
def workon(version):
"""workon the version of indicated"""
with prefix('workon %s' % server_virtualenvs[version]):
yield
@task
def pull(version='prod'):
with cdversion(version):
run('git pull --no-edit')
@task
def install_requirements(version='prod'):
with workon(version):
with cdversion(version):
run('pip install -r requirements/base.txt')
run('pip install -r requirements/production.txt')
@task
def build_static(version='prod'):
with workon(version):
run('django-admin collectstatic --noinput')
@task
def syncdb(version='prod'):
with workon(version):
run('django-admin syncdb')
@task
def restart_django(version='prod'):
with workon(version):
run('supervisorctl -c %s restart llnyc' % supervisord_conf)
@task
def restart_memcached():
run('supervisorctl -c %s restart memcached' % supervisord_conf)
@task
def status():
run('supervisorctl -c %s status' % supervisord_conf)
@task
def start(version='prod'):
pull(version=version)
install_requirements(version=version)
syncdb(version=version)
build_static(version=version)
with workon(version):
run('supervisorctl -c %s start %s' % (supervisord_conf,
supervisord_programs[version]))
@task
def stop(version='prod'):
with workon(version):
run('supervisorctl -c %s stop %s' % (supervisord_conf,
supervisord_programs[version]))
@task
def deploy():
pull()
install_requirements()
syncdb()
build_static()
restart_django()