3
4

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.

GatsbyとNetlifyで技術ブログを作成する

Last updated at Posted at 2020-03-04

Gatsbyとは

Reactベースの静的サイトジェネレータのこと
利点や仕組みなどについては

Reactベース静的サイトジェネレータGatsbyの真の力をお見せします
https://qiita.com/uehaj/items/1b7f0a86596353587466
に記載されています。技術ブログを開始しようと考えるにあたりReactベースのわりと新しめの技術を使いかったため使用いたしました。

Netlify

静的なサイトを超高速で提供できるWebサービスのこと
上記のGatsbyと組み合わせることで、GitHubにPUSHしたフロントエンド資材を一気に公開することができます。

手順(yarn)

gatsby-cliをグローバルにインストールします

yarn global add gatsby-cli

cliを利用して、ブログを作成します。
デザインテンプレートは Gatsby Starters を利用します。

gatsby new <site-name> <Gatsby Starters>

コンソール上にも表示されるが、
以下のコマンドで、内容をローカル確認することができる。

cd <site-name>
gatsby develop

http://localhost:8000/

ファイルの構造は、利用したスターターによると思うので、readmeとかを覗いて調べる。

GitHubへPUSH

GitHubにプッシュしたNetlifyへのデプロイという流れなので、
まずはGitHubにPUSHします。

git init
git add .
git commit -m "first commit"
git remote add origin <追加したいリポジトリURL>
git push -u origin master

Netlifyでデプロイ

アカウント作成後、以下のNew site from Gitをクリックします。

スクリーンショット 2020-03-04 19.20.36.png

Create a new siteのページに移るので
GitHubを選択します。

スクリーンショット 2020-03-04 19.20.53.png

ownerやBranchを設定して
最後に下のDeploy Siteを選択するとサイトがデプロイされます。

スクリーンショット 2020-03-04 19.21.27.png
3
4
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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?