0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Octopressの初期設定をしよう!

Posted at

Octopressをインストールした直後に行う初期設定について、簡単にまとめとこう。

ブログ基本情報を変更

ブログの各種設定は、_config.ymlに記載されています。
ブログ基本情報として、以下を更新しておこう。

_config.yml
# ----------------------- #
#      Main Configs       #
# ----------------------- #

url: http://FakeStarBaby.github.com
title: SCRABBLE NOTE
subtitle: 思うがままに書き殴るブログ
author: Yoshinori Hirasawa
simple_search: http://google.com/search
description: 

ローカル環境で確認

Octopressでファイルを作成、更新したら、以下の手順でローカル環境で確認する事が出来ます。

$ rake generate
## Generating Site with Jekyll
unchanged sass/screen.scss
/Users/fakestarbaby/.rvm/gems/ruby-1.9.3-p0@fakestarbaby.github.com/gems/maruku-0.6.0/lib/maruku/input/parse_doc.rb:22:in `<top (required)>': iconv will be deprecated in the future, use String#encode instead.
Configuration from /Users/fakestarbaby/Projects/rails/fakestarbaby.github.com/_config.yml
/Users/fakestarbaby/.rvm/gems/ruby-1.9.3-p0@fakestarbaby.github.com/gems/ffi-1.0.9/lib/ffi/platform.rb:27: Use RbConfig instead of obsolete and deprecated Config.
Building site: source -> public
Successfully generated site: source -> public
$ rake preview
Starting to watch source with Jekyll and Compass. Starting Rack on port 4000
[2012-03-28 10:36:20] INFO  WEBrick 1.3.1
[2012-03-28 10:36:20] INFO  ruby 1.9.3 (2011-10-30) [x86_64-darwin11.2.0]
[2012-03-28 10:36:20] INFO  WEBrick::HTTPServer#start: pid=44781 port=4000
/Users/fakestarbaby/.rvm/gems/ruby-1.9.3-p0@fakestarbaby.github.com/gems/maruku-0.6.0/lib/maruku/input/parse_doc.rb:22:in `<top (required)>': iconv will be deprecated in the future, use String#encode instead.
Configuration from /Users/fakestarbaby/Projects/rails/fakestarbaby.github.com/_config.yml
/Users/fakestarbaby/.rvm/gems/ruby-1.9.3-p0@fakestarbaby.github.com/gems/ffi-1.0.9/lib/ffi/platform.rb:27: Use RbConfig instead of obsolete and deprecated Config.
Auto-regenerating enabled: source -> public
[2012-03-28 10:36:21] regeneration: 94 files changed
/Users/fakestarbaby/.rvm/gems/ruby-1.9.3-p0@fakestarbaby.github.com/gems/fssm-0.2.7/lib/fssm/support.rb:40: Use RbConfig instead of obsolete and deprecated Config.
>>> Compass is watching for changes. Press Ctrl-C to Stop.

ブラウザで、"http://localhost:4000/" へアクセスしてみましょう。
期待した通りに表示されていれば問題無しです。
GitHubへコミットするのもお忘れなく。


後は、記事を投稿するだけですね!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?