github.com/rothwerx/packer@v0.9.0/website/README.md (about)

     1  # Packer Website
     2  
     3  This subdirectory contains the entire source for the [Packer website](http://www.packer.io).
     4  This is a [Middleman](http://middlemanapp.com) project, which builds a static
     5  site from these source files.
     6  
     7  ## Contributions Welcome!
     8  
     9  If you find a typo or you feel like you can improve the HTML, CSS, or
    10  JavaScript, we welcome contributions. Feel free to open issues or pull
    11  requests like any normal GitHub project, and we'll merge it in.
    12  
    13  ## Running the Site Locally
    14  
    15  Running the site locally is simple. Clone this repo and run the following
    16  commands:
    17  
    18  ```
    19  make dev
    20  ```
    21  
    22  Then open up `localhost:4567`. Note that some URLs you may need to append
    23  ".html" to make them work (in the navigation and such).
    24  
    25  ## Keeping Tidy
    26  
    27  To keep the source code nicely formatted, there is a `make format` target. This
    28  runs `htmlbeautify` and `pandoc` to reformat the source code so it's nicely formatted.
    29  
    30      make format
    31  
    32  Note that you will need to install pandoc yourself. `make format` will skip it
    33  if you don't have it installed.