-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
94 lines (71 loc) · 2.02 KB
/
tasks.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
import os
import shutil
import sys
import datetime
from invoke import task
from pelican.server import ComplexHTTPRequestHandler, RootedHTTPServer
CONFIG = {
# Local path configuration (can be absolute or relative to tasks.py)
"deploy_path": "output",
# Github Pages configuration
"github_pages_branch": "master",
"commit_message": "'Publish site on {}'".format(datetime.date.today().isoformat()),
# Port for `serve`
"port": 8000,
}
@task
def clean(c):
"""Remove generated files"""
if os.path.isdir(CONFIG["deploy_path"]):
shutil.rmtree(CONFIG["deploy_path"])
os.makedirs(CONFIG["deploy_path"])
@task
def build(c):
"""Build local version of site"""
c.run("pelican -s pelicanconf.py")
@task
def rebuild(c):
"""`build` with the delete switch"""
c.run("pelican -d -s pelicanconf.py")
@task
def regenerate(c):
"""Automatically regenerate site upon file modification"""
c.run("pelican -r -s pelicanconf.py")
@task
def serve(c):
"""Serve site at http://localhost:8000/"""
class AddressReuseTCPServer(RootedHTTPServer):
allow_reuse_address = True
server = AddressReuseTCPServer(
CONFIG["deploy_path"], ("", CONFIG["port"]), ComplexHTTPRequestHandler
)
sys.stderr.write("Serving on port {port} ...\n".format(**CONFIG))
server.serve_forever()
@task
def reserve(c):
"""`build`, then `serve`"""
build(c)
serve(c)
@task
def preview(c):
"""Build production version of site"""
c.run("pelican -s publishconf.py")
@task
def publish(c):
"""Publish to production via rsync"""
c.run("pelican -s publishconf.py")
c.run(
'rsync --delete --exclude ".DS_Store" -pthrvz -c '
"{} {production}:{dest_path}".format(
CONFIG["deploy_path"].rstrip("/") + "/", **CONFIG
)
)
@task
def gh_pages(c):
"""Publish to GitHub Pages"""
preview(c)
c.run(
"ghp-import -b {github_pages_branch} "
"-m {commit_message} "
"{deploy_path} -p".format(**CONFIG)
)