github.com/ns1/terraform@v0.7.10-0.20161109153551-8949419bef40/website/README.md (about) 1 # Terraform Website 2 3 This subdirectory contains the entire source for the [Terraform Website](https://www.terraform.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 To run the site locally, clone this repository and run: 16 17 ```shell 18 $ make website 19 ``` 20 21 You must have Docker installed for this to work. 22 23 Alternatively, you can manually run the website like this: 24 25 ```shell 26 $ bundle 27 $ bundle exec middleman server 28 ``` 29 30 Then open up `http://localhost:4567`.