-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfabfile.py
114 lines (81 loc) · 1.88 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
# -*- coding: utf-8 -*-
from fabric import Connection
from invoke import task
SITE_DIR = '~/sites/flask-api-users'
VENV = '~/venvs/'
PYTHON_BIN = VENV + 'bin/python'
PIP_BIN = VENV + 'bin/pip'
def whoami(c):
"""
Print the envirioment and user
"""
c.run('whoami')
def git(conn, cmd):
"""
Create a method to execute git on the server
"""
with conn.cd('{}'.format(SITE_DIR)):
conn.run('git {}'.format(cmd))
def checkout(conn, branch='master', tag=None):
"""
Run git checkout to branch or tag
"""
if tag:
git(conn, 'checkout {}'.format(tag))
else:
git(conn, 'checkout {}'.format(branch))
def pull(conn):
"""
Run git pull command on repository
"""
git(conn, "pull")
def fetch(conn):
"""
Run git pull command on repository
"""
git(conn, "fetch")
def sudo(conn, cmd):
conn.sudo(cmd)
def install_requirements(conn, env='prod'):
"""
Install all requirements by the server
"""
cmd = "{} install -r requirements/{}.txt".format(PIP_BIN, env)
with conn.cd('{}'.format(SITE_DIR)):
conn.run(cmd)
@task
def uname(c):
""" Prints information about the host. """
c.run('uname -a')
whoami(c)
def restart(conn):
"""
Restart supervisor and webserver
"""
conn.sudo("supervisorctl restart api_users:gunicorn_api_users")
conn.sudo("service nginx restart")
@task
def status(c):
"""
Status supervisor and webserver
"""
c.sudo("supervisorctl status api_users:gunicorn_api_users")
c.sudo("service nginx status")
@task
def stop(c):
"""
Stopping supervisor
"""
c.sudo("supervisorctl stop api_users:gunicorn_api_users")
@task
def deploy(c, tag=None):
"""
Deploy the code to context
"""
fetch(c)
if tag:
checkout(c, tag)
else:
checkout(c)
install_requirements(c)
restart(c)