Yu-Chieh’s Blog (Y.C. Chang)

Ruby on Rails / Rubygems / FullStack / Git / Mac notes.

Install Lavish on Ubuntu 14.04

  • Lavish is a Bootstrap theme generator by Quan. It can generate both CSS and LESS code from an image you provide. Then, you can customize it.

  • Recently, I want to install on my ubuntu server for using it locally and conviniently.

  • the following steps are my install howto:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ git clone https://github.com/mquan/lavish.git
$ cd lavish/
$ rvm install 1.9.3
$ rvm use 1.9.3
$ bundle install --without production

$ sudo apt-get install libmagickwand-dev # for solving rmagick install problem

$ sudo add-apt-repository ppa:chris-lea/node.js # optional
$ sudo apt-get -y update # optional

$ sudo apt-get -y install nodejs # for ExtJS

$ rails s # open http://localhost:3000/ and enjoy it.
  • done.

Comments