layout: post title: “2018-01-19-cloud9-jekyll-github-pages” date: 2018-01-19 16:27:29 +0000
はじめに
Cloud9 上で Jekyll ブログを構築して Github Pages で公開することを目的とした手順です。
本題
gem install jekyll bundler
jekyll new TITLE
- Gemfile を開いて
11行目 を # でコメントアウト
したら18行目の #
を取る - ‘cd TITLE’
bundle update
bundle exec jekyll serve --host $IP --port $PORT --baseurl ''
右横に出てきたウィンドウ内のURLをクリックするとサイト確認できます。- 必要に応じて Config ファイルなどを編集
- Bash に戻って
git init
を実行 git remote add origin https://github.com/アカウントID/アカウントID.github.io
を実行git add .
で Add して…git commit -m "updated site"
任意のコミットを入力、または、git commit --allow-empty -m "first commit"
で空欄のコミットを送っても良しgit push -u origin master
プッシュUsername for 'https://github.com':
と出るので Github アカウントIDを入力Password:
同じくパスワードを入力アカウント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 ...