-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfabfile.py
113 lines (82 loc) · 2.37 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
108
109
110
111
112
113
import contextlib
from fabric.api import *
env.hosts = ['nycommons_nycommons',]
env.use_ssh_config = True
server_project_dirs = {
'dev': '/webapps/nycommons_dev/nycommons-django/',
'prod': '/webapps/nycommons/nycommons-django/',
}
server_virtualenvs = {
'dev': 'nycommons_dev',
'prod': 'nycommons',
}
supervisord_programs = {
'dev': 'django_dev',
'prod': 'django',
}
supervisord_conf = '/etc/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')
@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 collect_static(version='prod'):
with workon(version):
run('django-admin collectstatic --noinput')
@task
def migrate(version='prod'):
with workon(version):
run('django-admin migrate')
@task
def restart_django(version='prod'):
run('supervisorctl -c %s restart %s' % (
supervisord_conf,
supervisord_programs[version],
))
@task
def status():
run('supervisorctl -c %s status' % supervisord_conf)
@task
def start(version='prod'):
pull(version=version)
install_requirements(version=version)
migrate(version=version)
collect_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_dev():
pull(version='dev')
install_requirements(version='dev')
migrate(version='dev')
collect_static(version='dev')
restart_django(version='dev')
@task
def deploy():
pull()
install_requirements()
migrate()
collect_static()
restart_django()