forked from flavioamieiro/pythoncampus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fabfile.py
119 lines (93 loc) · 3.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
114
115
116
117
118
119
# *-* coding: utf-8 -*-
import time
import sys
import os
from fabric.api import *
from fabric.contrib.files import upload_template
# Remote directory monitored by Dreamhost's passenger
env.server_site = '~/pythoncampus.org'
env.server_source = '~/srv'
# Set the working directory to the root of our repo,
# assuming that fabfile is on it.
os.chdir(os.path.dirname(__file__))
def setup_server():
"""
Setup a host server. Run this once before the first deploy.
"""
# Create the directory that will store deployed packages.
# Assume we'll have only one project per Dreamhost user.
run("mkdir -p %(server_source)s" % env)
# Prompt for database configurations.
prompt('What database engine?', 'db_engine', 'mysql')
prompt('What database name?', 'db_name', 'pythoncampus')
prompt('What database host?', 'db_host')
prompt('What database user?', 'db_user')
prompt('What database password?', 'db_passwd')
# Render local_settings.py with specific server configurations.
server_local_settings = "%(server_source)s/local_settings.py" % env
upload_template('project/local_settings.example',
server_local_settings, env)
def deploy(**kwargs):
"""
Deploy a given project revision to the server.
"""
rev = kwargs.get('rev')
if not rev:
print 'ERROR: No revision given. Cannot deploy.'
print 'To deploy the current revision, use the following command:'
print '$ fab deploy:rev=`git rev-parse HEAD`'
sys.exit(1)
# Create a stap based on local time.
stamp = time.strftime("%Y%m%d-%Hh%Mm%Ss")
# Before deployment, run the tests locally.
#run_test()
# Deploy
_upload_project(rev, stamp)
_activate_package(stamp)
#server_migrate()
# Tag the deployed revision
local("git tag -a deploy/%s %s -m ''" % (stamp, rev))
local("git push --tags")
def _upload_project(rev, stamp):
"""
Upload a specified revision to the server
"""
require('server_source')
package = '%s.zip' % stamp
# Create a zip package with a specified revision.
local('git archive --format=zip --output=%s --prefix=%s/ %s' % \
(package, stamp, rev))
# Put the package on the server.
server_package = os.path.join(env.server_source, package)
put(package, server_package)
# Unpack it on the server.
with cd(env.server_source):
run('unzip %s' % stamp)
run('rm %s' % server_package)
# Delete the local zip file
local('rm %s' % package)
def _activate_package(stamp):
"""
Set the server symlink to a specific uploaded package.
"""
require('server_site', 'server_source')
run('rm -f %(server_site)s' % env)
stamp_source = os.path.join(env.server_source, stamp)
run('ln -s %s %s' % (stamp_source, env.server_site))
run('rm -f %(server_site)s/project/local_settings.py' % env)
run('ln -s %(server_source)s/local_settings.py %(server_site)s/project/local_settings.py' % env)
def server_migrate():
"""
Run syncdb and migrate command on the server
"""
require('server_site')
with cd(env.server_site):
run("""
PYTHONPATH=%s/src:%s/lib:%s && \
python manage.py syncdb --noinput && python manage.py migrate
""" % (env.server_site,) * 3 )
def server_reload():
"""
Reload Dreamhost's webserver to avoid cache problems.
"""
run('pkill python')