-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
75 lines (62 loc) · 1.92 KB
/
config.rb
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
# Require custom libraries
require 'lib/wordpress'
# Do not compile template files used when dynamically generating pages
ignore 'templates/*'
# Create a new instance of WordPress. Replace the URL with the URL of your
# rest server endpoint.
wordpress = WordPress.new('http://calderonline.com/liz-admin/wp-json')
# Dynamically generate posts using wordpress data
wordpress.posts.each do |post|
post['terms']['category'].each do |cat|
if cat['slug'].include?('front-page')
proxy "/index.html", "templates/post.html", locals: { post: post }
else
proxy "/#{post['slug']}/index.html", "templates/post.html", locals: { post: post }
end
end
end
# Dynamically generate pages using wordpress data
wordpress.pages.each do |page|
proxy "/#{page['slug']}/index.html", "templates/page.html", locals: { page: page }
end
# Make the WordPress instance available to templates via a helper
helpers do
def wp
wordpress
end
end
# Create a pageable set of posts
activate :pagination do
pageable_set :posts do
wordpress.posts
end
end
set :css_dir, 'assets/css'
set :js_dir, 'assets/js'
set :images_dir, 'assets/img'
# Build-specific configuration
configure :build do
# Minify on build
activate :minify_css
activate :minify_javascript
activate :minify_html
# Enable cache buster
activate :asset_hash
# Use relative URLs
# activate :relative_assets
# Or use a different image path
# set :http_prefix, "/Content/images/"
end
activate :deploy do |deploy|
deploy.build_before = true # default: false
deploy.method = :rsync
deploy.host = 'calderonline.com'
deploy.path = 'public_html/liz/'
# Optional Settings
deploy.user = 'akramonl' # no default
# deploy.port = 5309 # ssh port, default: 22
# deploy.clean = true # remove orphaned files on remote host, default: false
# deploy.flags = '-rltgoDvzO --no-p --del' # add custom flags, default: -avz
end
activate :autoprefixer
activate :livereload