LoginSignup
0
0

More than 5 years have passed since last update.

Setup Octopress

Posted at

まだ実導入していないのですがとりあえずメモしておきます。

1- Octopress を取ってくる

git clone git://github.com/imathis/octopress.git octopress
cd octopress

2- rbenv 経由で使用したいバージョンのrubyをインストールし、localにセットした上で、bundler経由で依存gemのインストール

rbenv install 2.1.3
rbenv local 2.1.3
bundle install

3- デフォルトの Octopress テーマをインストール

$ bundle exec rake install
## Copying classic theme into ./source and ./sass
mkdir -p source
cp -r .themes/classic/source/. source
mkdir -p sass
cp -r .themes/classic/sass/. sass
mkdir -p source/_posts
mkdir -p public

Ref.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0