Joe
Joe

Reputation: 659

How do I install a Bootstrap theme generator

I would like to know how to recreate Bootstrap's generator. To provide some background information, Twitter Bootstrap features a way to customize your build through a nicely designed customize page here: http://getbootstrap.com/customize/

I downloaded and installed the docs, https://github.com/twitter/bootstrap/tree/master/docs, from the Bootstrap GitHub project with the intention of recreating and tweaking the the customize page on my own server.

However, in order it to work, I need some kind of backend generator that populates the variables from the customize page into the appropriate LESS files, etc. I believe the public Bootstrap generator runs at http://bootstrap.herokuapp.com/ (from looking at the JS ajax call).

How do I recreate it? Are there any public options out there?

Upvotes: 2

Views: 435

Answers (2)

Mahdi Abdi
Mahdi Abdi

Reputation: 692

as we know , bootstrap in an open source project . get it from here : bootstrap server

Upvotes: 1

Pigueiras
Pigueiras

Reputation: 19356

Creators of Bootstrap have the project in their Github accounts. It is built with node and you can download the full source code in the repository twitter/bootstrap-server.

Upvotes: 0

Related Questions