-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
50 lines (44 loc) · 1.15 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
# Markdown
set :markdown_engine, :redcarpet
set :markdown,
fenced_code_blocks: true,
smartypants: true,
disable_indented_code_blocks: true,
prettify: true,
tables: true,
with_toc_data: true,
no_intra_emphasis: true
# Assets
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
set :fonts_dir, 'fonts'
# Activate the syntax highlighter
activate :syntax
activate :autoprefixer do |config|
config.browsers = ['last 2 version', 'Firefox ESR']
config.cascade = false
config.inline = true
end
# Github pages require relative links
activate :relative_assets
set :relative_links, true
# Build Configuration
configure :build do
# If you're having trouble with Middleman hanging, commenting
# out the following two lines has been known to help
activate :minify_css
activate :minify_javascript
# activate :relative_assets
activate :asset_hash
activate :gzip
end
activate :deploy do |deploy|
deploy.build_before = true
deploy.deploy_method = :rsync
deploy.host = '33.33.33.20'
if ENV["VAGRANT_DEPLOY"].nil?
deploy.host = 'docs.questionr.com'
end
deploy.path = '/etc/nginx/html/api-docs/'
end