Instalasi Octopress Di Linux

Octopress adalah framework blogger static yang di buat oleh Brandon Mathis, Octropress ini berbasis jekyll. Octopress ini juga dapat kita deploy di github.
Berikut adalah cara menginstall octopress yang akan di deploy di github :

1. Download Atau Clone Octopress

  • $ git clone git://github.com/imathis/octopress.git yourgithubusername.github.io

2. Lalu masuk kedalam folder clone tadi

  • $ cd yourgithubusername.github.io

3. Jika belum install ruby (Kalau saya 1.9.1) (Optional)

  • $ sudo apt-get install ruby1.9.1-full
  • $ sudo update-alternatives --config ruby

4. Install bundler

  • $ sudo gem install bundler

5. Jika redcloth belum ke install (Optional)

  • $ sudo gem install RedCloth -v '4.2.9'

6. Install bundle

  • $ bundle install

7. Install Theme (tema)

  • $ rake install

8. Generate github pages

9. Generate file html

  • $ rake generate

10. Membuat folder deploy

  • $ mkdir _deploy
  • $ rake deploy

11. Jika gagal push master/deploy (Optional)

  • $ cd _deploy
  • $ git push -f origin master

12. Push source ke branch source

  • Kembali ke folder yourgithubusername.github.io
  • $ git add .
  • $ git commit -m 'Initial Octopress source commit'
  • $ git push origin source

Optional digunakan jika terjadi error

source : http://google.com

Comments