open-vault/website/config.rb

16 lines
489 B
Ruby
Raw Normal View History

2015-03-13 17:34:29 +00:00
#-------------------------------------------------------------------------
# Configure Middleman
#-------------------------------------------------------------------------
2015-04-07 01:35:00 +00:00
set :base_url, "https://www.vaultproject.io/"
2015-03-13 17:34:29 +00:00
activate :hashicorp do |h|
2015-05-15 20:15:58 +00:00
h.version = ENV["VAULT_VERSION"]
h.bintray_enabled = ENV["BINTRAY_ENABLED"]
h.bintray_repo = "mitchellh/vault"
h.bintray_user = "mitchellh"
h.bintray_key = ENV["BINTRAY_API_KEY"]
h.minify_javascript = false
2015-03-13 17:34:29 +00:00
end