This repository has been archived by the owner on Dec 22, 2024. It is now read-only.
forked from DamnedFacts/rocpy-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabfile.py
184 lines (147 loc) · 5.06 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Run 'fab --list' to see list of available commands.
References:
# http://docs.fabfile.org/en/1.0.1/usage/execution.html
'''
from __future__ import with_statement, print_function
import os
import sh
import sys
from fabric.api import env, local, run, task
from fabric.api import cd
from fabric.colors import red, green, blue
APP_NAME = "flask_application"
PROJ_DIR = os.path.dirname(os.path.abspath(__file__))
SITE_NAME = "example.com"
env.hosts = ['user@remotehost']
code_dir = '/path/to/repos/destination'
sys.path.append(PROJ_DIR)
"""
def _transfer_files(src, dst, ssh_port=None):
ssh_port = ssh_port or 22
assert os.getenv('SSH_AUTH_SOCK') is not None # Ensure ssh-agent is running
if not src.endswith('/'):
src = src + '/'
if dst.endswith('/'):
dst = dst[:-1]
local('rsync -avh --delete-before --copy-unsafe-links -e'
'"ssh -p {0}" {1} {2}'.format(ssh_port, src, dst), capture=False)
"""
@task
def pre_deploy():
'''Add, commit and push the Git repo before final deployment.'''
local("git add -p && git commit")
local("git push")
@task
def deploy():
global code_dir
'''Final deployment of the application'''
with cd(code_dir):
run("git pull")
run("touch flask_application.wsgi")
# run("sudo apachectl restart")
@task
def init(site_name=SITE_NAME):
'''Call env_setup, env_init, and skeletonize for one-step init'''
print(green("Call env_setup, env_init, and"
"skeletonize for one-step init:"))
env_setup()
env_init(site_name=site_name)
skeletonize()
@task
def env_init(site_name=SITE_NAME):
'''Initialize with this site hostname.'''
print(green("Initializing new site configuration..."))
#
# Generate secret key and update config file
#
import random
import string
CHARS = string.ascii_letters + string.digits
SECRET_KEY = "".join([random.choice(CHARS) for i in range(50)])
print(blue("Configuring the secret key..."))
os.chdir(PROJ_DIR)
try:
sh.sed("-i ",
"s/SECRET_KEY *=.*/SECRET_KEY = '{0}'/g".format(SECRET_KEY),
"{0}/config.py".format(APP_NAME))
except sh.ErrorReturnCode:
print(red("Could not configure SECRET_KEY for config.py"))
exit(1)
#
# Set the site name, the user defined site hostname
#
print(blue("Configuring the SITE_NAME '{0}'.".format(site_name)))
try:
sh.sed("-i ",
"s/SITE_NAME *=.*/SITE_NAME = '{0}'/g".format(site_name),
"{0}/config.py".format(APP_NAME))
except sh.ErrorReturnCode:
print(red("Could not configure SITE_NAME for config.py"))
exit(1)
@task
def env_setup():
'''Initialize environment with requisite Python modules.'''
print(green("Installing requisite modules..."))
# Install our requistite modules for the website.
sh.pip("install", r="requirements.txt")
@task
def skeletonize():
'''Update Skeleton HTML5-Boilerplate.'''
print(green("Skeletonizing the project directory..."))
# Skeleton
print(blue("Installing skeleton HTML5 Boilerplate."))
os.chdir(PROJ_DIR)
sh.git.submodule.update(init=True)
os.chdir(PROJ_DIR + "/Skeleton")
sh.git.pull("origin", "master")
sh.rsync("-av", "images", "{0}/{1}/static/".format(PROJ_DIR, APP_NAME))
sh.rsync("-av", "css", "{0}/{1}/static/".format(PROJ_DIR, APP_NAME))
sh.rsync("-av", "index.html",
"{0}/{1}/templates/base_t.html".format(PROJ_DIR, APP_NAME))
os.chdir(PROJ_DIR)
# Patch the base template with templating tags
print(blue("Patching the base template."))
os.chdir(PROJ_DIR + "/{0}/templates/".format(APP_NAME))
template_patch = open("base_t.patch".format(APP_NAME))
sh.patch(strip=0, _in=template_patch)
template_patch.close()
os.chdir(PROJ_DIR)
# jQuery
print(blue("Installing jquery 1.9.0."))
os.chdir(PROJ_DIR + "/" + APP_NAME + "/static/js")
sh.curl("http://code.jquery.com/jquery-1.9.0.min.js", O=True)
os.chdir(PROJ_DIR)
@task
def console():
'''Load the application in an interactive console.'''
local('env DEV=yes python -i runserver.py', capture=False)
@task
def server():
'''Run the dev server'''
os.chdir(PROJ_DIR)
local('env DEV=yes python runserver.py', capture=False)
@task
def test():
'''Run the test suite'''
local('env TEST=yes python tests.py', capture=False)
@task
def clean():
'''Clear the cached .pyc files.'''
local("find . \( -iname '*.pyc' -o -name '*~' \) -exec rm -v {} \;",
capture=False)
"""
@task
def server_setup():
'''Setup the server environment.'''
global SITE_NAME
local_dir = os.getcwd()
remote_dir = os.path.join('/home', os.getlogin(), 'web', SITE_NAME,
'private', SITE_NAME)
run('mkdir -p {0}'.format(remote_dir))
_transfer_files(local_dir, env.host + ':' + remote_dir, ssh_port=env.port)
run('cd {0} && bash setup/server_setup.bash {1}'.format(remote_dir,
SITE_NAME))
"""