forked from xflows/clowdflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
executable file
·71 lines (57 loc) · 2.24 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
from __future__ import with_statement
from fabric.api import *
from fabric.colors import *
from fabric.utils import puts, abort
env.use_ssh_config = True
apps_to_migrate = ('workflows','streams',)
def live():
""" doloci live server kot aktivni """
env.os = 'ubuntu'
env.hosts = ['[email protected]']
env.branch = 'master'
def deploy():
""" deploy na serverju
uporaba:
$ fab live deploy
"""
with prefix('source /srv/django-envs/mothra/bin/activate'):
with cd('/srv/django-projects/mothra'):
puts(yellow("[Pulling from origin, on branch %s]" % (env.branch,)))
run('git pull origin %s' % (env.branch,))
run('git checkout %s' % (env.branch,))
puts(yellow("[Installing packages]"))
run('pip install -qr requirements.txt')
puts(yellow("[Migrating apps]"))
for app in apps_to_migrate:
puts("--> [Migrating %s]" % (app,))
run('python manage.py migrate %s --no-initial-data' % (app, ))
puts(yellow("[Collecting static files]"))
run("python manage.py collectstatic --noinput")
puts(yellow("[Auto importing packages]"))
run("python manage.py import_all")
with cd('/srv/django-projects/supervisor'):
puts(yellow("[Restarting the run streams daemon"))
run('supervisorctl restart runstreams')
#with cd('/srv/django-projects/supervisor'):
# puts(yellow("[Restarting the gunicorn daemon"))
# run('supervisorctl restart mothra')
#puts(yellow("[Compressing]"))
#run('python manage.py compress')
def supervisorstat():
"supervisor statistika na serverju"
with prefix('source /srv/django-envs/mothra/bin/activate'):
with cd('/srv/django-projects/supervisor'):
run('tail /srv/django-logs/runstreams.stdout.log')
run('supervisorctl status')
def apache_restart():
"""restarta apache service
primer:
$ fab dev apache_restart
$ fab live apache_restart
"""
if env.os == 'ubuntu':
sudo('service apache2 restart')
elif env.os == 'arch':
sudo('rc.d restart httpd')
else:
abort('env.os ni definiran, kaj je zdej to')