mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-26 00:31:18 -04:00
- Reformat .html / .erb files - Remove extra </div> in index.html.erb - Add htmlbeautifier gem - Add middleman-breadcrumbs - Add make format (calls htmlbeautifier)
15 lines
477 B
Ruby
15 lines
477 B
Ruby
#-------------------------------------------------------------------------
|
|
# Configure Middleman
|
|
#-------------------------------------------------------------------------
|
|
|
|
set :base_url, "https://www.packer.io/"
|
|
|
|
activate :breadcrumbs
|
|
|
|
activate :hashicorp do |h|
|
|
h.version = ENV["PACKER_VERSION"]
|
|
h.bintray_enabled = ENV["BINTRAY_ENABLED"]
|
|
h.bintray_repo = "mitchellh/packer"
|
|
h.bintray_user = "mitchellh"
|
|
h.bintray_key = ENV["BINTRAY_API_KEY"]
|
|
end
|