This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.rb
101 lines (77 loc) · 2.3 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
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
# Unique header generation
require './lib/unique_head.rb'
require './lib/nesting_unique_head.rb'
# Markdown
set :markdown_engine, :redcarpet
set :markdown,
fenced_code_blocks: true,
smartypants: true,
disable_indented_code_blocks: true,
prettify: true,
strikethrough: true,
tables: true,
with_toc_data: true,
no_intra_emphasis: true,
renderer: NestingUniqueHeadCounter
# Assets
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
set :fonts_dir, 'fonts'
# Activate the syntax highlighter
activate :syntax
ready do
require './lib/multilang.rb'
end
activate :sprockets
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
activate :livereload
# 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
# Deploy Configuration
# If you want Middleman to listen on a different port, you can set that below
set :port, 4567
helpers do
require './lib/toc_data.rb'
end
# Global Variables
# Edit for host
set :apihost, 'http://localhost:8070'
config[:apihost]
set :filingapihost, 'https://ffiec.cfpb.gov/v2/filing/institutions/{{lei}}'
config[:filingapihost]
set :filingapihostbeta, 'https://ffiec.beta.cfpb.gov/v2/filing/institutions/{{lei}}'
config[:filingapihostbeta]
set :authhost, 'https://ffiec.cfpb.gov'
config[:authhost]
set :authhostbeta, 'https://ffiec.beta.cfpb.gov'
config[:authhostbeta]
set :adminapihost, 'http://localhost:8081'
config[:adminapihost]
set :publicapihost, 'https://ffiec.cfpb.gov/v2/public'
config[:publicapihost]
set :databrowserapihost, 'https://ffiec.cfpb.gov/v2/data-browser-api'
config[:databrowserapihost]
set :ratespreadapi, 'https://ffiec.cfpb.gov/public/rateSpread'
config[:ratespreadapi]
set :quarterlydataapi, 'https://ffiec.cfpb.gov/quarterly-data/graphs'
config[:quarterlydataapi]
set :fileapi, 'https://ffiec.cfpb.gov/file'
config[:fileapi]
set :s3api, 'https://s3.amazonaws.com/cfpb-hmda-public/prod'
config[:s3api]