Skip to content

Blueprint tutorial (Step 1): Intializing your project

Aidan Feay edited this page Jul 29, 2015 · 3 revisions

This step-by-step guide will walk you through creating a configurable Bootstrap carousel blueprint using Middleman

Code is available in this repo.

Requirements

Make sure you have middleman installed. If not run gem install middleman from the terminal.

Initializing Project

  1. Create an empty project repo.
  2. Initialize git
  3. Initialize a Middleman project by running middleman init . from the project directory
  4. Run bundle exec middleman to start the server.
  5. Open http:\\localhost:4567 to make sure that the project has been initialized correctly.

Now you have a middleman app running. In the next step, we will add code for carousel.

Go to the next step