Cloud9 で Jekyll + Github Pages


layout: post title: “2018-01-19-cloud9-jekyll-github-pages” date: 2018-01-19 16:27:29 +0000

はじめに

Cloud9 上で Jekyll ブログを構築して Github Pages で公開することを目的とした手順です。

本題

  1. gem install jekyll bundler
  2. jekyll new TITLE
  3. Gemfile を開いて 11行目 を # でコメントアウト したら 18行目の # を取る
  4. ‘cd TITLE’
  5. bundle update
  6. bundle exec jekyll serve --host $IP --port $PORT --baseurl '' 右横に出てきたウィンドウ内のURLをクリックするとサイト確認できます。
  7. 必要に応じて Config ファイルなどを編集
  8. Bash に戻って git init を実行
  9. git remote add origin https://github.com/アカウントID/アカウントID.github.io を実行
  10. git add . で Add して…
  11. git commit -m "updated site" 任意のコミットを入力、または、 git commit --allow-empty -m "first commit" で空欄のコミットを送っても良し
  12. git push -u origin master プッシュ
  13. Username for 'https://github.com': と出るので Github アカウントIDを入力
  14. Password: 同じくパスワードを入力
  15. アカウントID.github.io にアクセスして表示されていたら完成

プラグインを追加する

Jekyll ブログにはページャーや

追記

Jekyll は頻繁にアップデートされます定期的に以下コマンドを実行することをオススメします。

  • bundle update

参考リンク

Cloud IDE - AWS Cloud9 - AWS
AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you write, run, and debug your code with ...
タイトルとURLをコピーしました