blogをデプロイするまでの作業手順
Octopressでghithub.comにブログを公開するまでの手順を以下にざっくりまとめます。 (主に自分用)
note: username.github.ioは適宜変更
githubに公開用のリポジトリを作る
Octopressをローカルに持ってくる
git clone git@github.com:imathis/octopress.git username.github.io
bundlerで諸々インストール
cd username.github.io gem install bundler bundle install --path vendor/bundle bundle exec rake setup_github_pages # あとは表示に従う
bitbucketのリポジトリを作ってとりあえずコミットする
# bitbucketのサイトでリポジトリを作っておく git remote add origin git@bitbucket.org:username/username.github.io.git git add -A git commit -m"First Commit" git push -u origin master
初期設定をする
vim _config.yml
DNSを設定する
記事を書き、確認して、公開する
rake new_post["Hello World!"] rake preview rake gen_deploy rake deploy
bitbucketにコミットする