1
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 3 years have passed since last update.

ElmでつくったBMI計算機MVPをデプロイしてみた

Posted at

この前の記事でElmを使って簡易的なBMI計算機を作ってみたので、デプロイしてみることにした!

デプロイする流れとしては、GitHubにBMI計算機のソースコードをpushしNetlifyにてデプロイ。

リポジトリとプロジェクト作成

まずはGitHubで新規レポジトリを作成。
その次に、Git Bashにて以下のコマンドを入力。

cd {ローカルのレポジトリ置き場}
git clone {GitHubのURL}
cd {GitHubのレポジトリ名}
vim .gitignore
# https://www.toptal.com/developers/gitignore で Elm, Node を選択。
elm init

さくっとBMI計算機をつくる

前の記事で作成したこいつsrc/Main.elmを移す。

Netlifyにデプロイ

Elmをビルドするために package.json にビルドスクリプトを追加する。
Netlifyは、設定したビルドスクリプトを実行してくれる機能があるので、出力されたファイルを公開する。

デプロイした成果物

感想

Netlifyの使い方に慣れなければ。
Elmをビルドするためのスクリプトを入れるに手こずった。

1
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
1
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?