-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabfile.py
122 lines (89 loc) · 2.51 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
114
115
116
117
118
119
120
121
122
import contextlib
from fabric.api import *
# TODO set hosts
env.hosts = ['',]
env.use_ssh_config = True
# TODO set
server_project_dirs = {
'dev': '~/webapps/',
'prod': '~/webapps/',
}
# TODO set
server_virtualenvs = {
'dev': '',
'prod': '',
}
# TODO set
supervisord_programs = {
'dev': '',
'prod': '',
}
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')
@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.py collectstatic --noinput')
with cdversion(version, '{{ project_name }}/collected_static/'):
run('bower install')
with cdversion(version, '{{ project_name }}/collected_static/js/'):
run('r.js -o app.build.js')
@task
def syncdb(version='prod'):
with workon(version):
run('django-admin.py syncdb')
@task
def migrate(version='prod'):
with workon(version):
run('django-admin.py migrate')
@task
def restart_django():
run('supervisorctl -c %s restart llnola' % 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)
migrate(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()
migrate()
build_static()
restart_django()