-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
98 lines (73 loc) · 2.39 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
from fabric.api import *
import fabric.contrib.project as project
import os
import shutil
import sys
import SocketServer
from pelican.server import ComplexHTTPRequestHandler
# Local path configuration (can be absolute or relative to fabfile)
env.deploy_path = 'output'
DEPLOY_PATH = env.deploy_path
# Remote server configuration, use ssh-config for convensation.
env.use_ssh_config = True
production = 'vultr'
dest_path = '/sites/hr-note'
# Github Pages configuration
env.github_pages_branch = "gh-pages"
# Port for `serve`
PORT = 8000
def clean():
"""Remove generated files"""
if os.path.isdir(DEPLOY_PATH):
shutil.rmtree(DEPLOY_PATH)
os.makedirs(DEPLOY_PATH)
def build():
"""Build local version of site"""
local('pelican -s pelicanconf.py')
def rebuild():
"""`clean` then `build`"""
clean()
build()
def regenerate():
"""Automatically regenerate site upon file modification"""
local('pelican -r -s pelicanconf.py')
def serve():
"""Serve site at http://localhost:8000/"""
os.chdir(env.deploy_path)
class AddressReuseTCPServer(SocketServer.TCPServer):
allow_reuse_address = True
server = AddressReuseTCPServer(('', PORT), ComplexHTTPRequestHandler)
sys.stderr.write('Serving on port {0} ...\n'.format(PORT))
server.serve_forever()
def reserve():
"""`build`, then `serve`"""
build()
serve()
def preview():
"""Build production version of site"""
local('pelican -s publishconf.py')
@hosts(production)
def publish():
"""Publish to production via rsync"""
local('pelican -s publishconf.py')
cmd = ('rsync -ogavz --progress --delete'
' --exclude ".DS_Store" '
'output/* vultr:/sites/hr-note/')
local(cmd)
def gh_pages():
"""Publish to GitHub Pages"""
rebuild()
local("ghp-import -b {github_pages_branch} {deploy_path}".format(**env))
local("git push origin {github_pages_branch}".format(**env))
@hosts(production)
def nginx():
"""upload nginx config"""
cmd = 'scp nginx_site.conf vultr:/tmp/nginx_site.conf'
local(cmd)
run('sudo mv /tmp/nginx_site.conf /etc/nginx/sites-available/hr-note')
run('sudo chown root:root /etc/nginx/sites-available/hr-note')
run('sudo ln -f -s /etc/nginx/sites-available/hr-note /etc/nginx/sites-enabled/hr-note')
run('sudo nginx -s reload')
@hosts(production)
def clean_site():
run("sudo rm -rf /sites/hr-note/*")