This repository has been archived by the owner on May 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SiteConfig.groovy
110 lines (97 loc) · 2.88 KB
/
SiteConfig.groovy
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
import com.sysgears.theme.ResourceMapper
import com.sysgears.theme.deploy.GHPagesDeployer
import com.sysgears.theme.taglib.ThemeTagLib
// Resource mapper and tag libs.
resource_mapper = new ResourceMapper(site).map
tag_libs = [ThemeTagLib]
excludes += ['/_[^/]*/.*'] // excludes directories that start from '_'
features {
highlight = 'none' // 'none', 'pygments'
compass = 'none'
markdown = 'txtmark' // 'txtmark', 'pegdown'
}
environments {
dev {
log.info 'Development environment is used'
url = "http://localhost:${jetty_port}"
show_unpublished = true
production_site = false
}
prod {
log.info 'Production environment is used'
url = 'https://coding-pi-science-day.web.cern.ch/coding-pi-science-day' // site URL, for example http://www.example.com
show_unpublished = false
features {
minify_xml = true
minify_html = false
minify_js = true
minify_css = false
}
production_site = true
}
cmd {
features {
compass = 'none'
highlight = 'none'
}
}
}
python {
interpreter = 'jython' // 'auto', 'python', 'jython'
//cmd_candidates = ['python2', 'python', 'python2.7']
//setup_tools = '2.1'
}
ruby {
interpreter = 'jruby' // 'auto', 'ruby', 'jruby'
//cmd_candidates = ['ruby', 'ruby1.8.7', 'ruby1.9.3', 'user.home/.rvm/bin/ruby']
//ruby_gems = '2.2.2'
}
// Site configuration.
posts_base_url = '/blog/posts/' // the base url for blog entries
// Deployment settings.
s3_bucket = '' // your S3 bucket name
deploy_s3 = "s3cmd sync --acl-public --reduced-redundancy ${destination_dir}/ s3://${s3_bucket}/"
gh_pages_url = '' // path to GitHub repository in format [email protected]:{username}/{repo}.git
deploy = new GHPagesDeployer(site).deploy
rss {
}
// Custom commands-line commands.
commands = [
/*
* Creates new page.
*
* location - relative path to the new page, should start with the /, i.e. /pages/index.html.
* pageTitle - new page title
*/
'create-page': { String location, String pageTitle ->
file = new File(content_dir, location)
file.parentFile.mkdirs()
file.exists() || file.write("""---
layout: page
title: "${pageTitle}"
published: true
---
""")},
/*
* Creates new post.
*
* title - new post title
*/
'create-post': { String postTitle ->
def date = new Date()
def fileDate = date.format("yyyy-MM-dd")
def filename = fileDate + "-" + postTitle.encodeAsSlug() + ".markdown"
def blogDir = new File(content_dir + "${posts_base_url}")
if (!blogDir.exists()) {
blogDir.mkdirs()
}
def file = new File(blogDir, filename)
file.exists() || file.write("""---
layout: post
title: "${postTitle}"
image:
date: "${date.format(datetime_format)}"
published: true
---
""")},
]