-
Notifications
You must be signed in to change notification settings - Fork 33
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.
Make sure you have middleman
installed. If not run gem install middleman
from the terminal.
- Create an empty project repo.
- Initialize
git
- Initialize a Middleman project by running
middleman init .
from the project directory - Run
bundle exec middleman
to start the server. - 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