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 1 year has passed since last update.

Shopify製のReactフレームワークHydrogenをHerokuにデプロイする

Last updated at Posted at 2022-11-10

Shopify用のフロントエンドを開発する際に便利な Shopify製のReactベースのフレームワークHydrogenをHerokuにデプロイしてみます。

ここでは簡単のためデプロイ対象をHerokuとしていますが、Node.jsコンテナを使うPaaSならほぼ一緒です。

前提

  • Hydrogen CLI で生成されるサンプルアプリであるDemoStoreをデプロイするものとします。
  • Heroku の設定やログインは済んでいるものとします。

Hydrogen の npm scripts の修正

Hydrogen のルートにあるpackage.jsonを開いて以下のように編集します。

Node.js コンテナ向けのビルドスクリプトと Hydrogen 内蔵のエントリポイント向けの起動スクリプトを設定しています。

    "build": "shopify hydrogen build --target node",
    "start": "node dist/node/index.js",

Heroku への デプロイ

heroku create -a アプリ名
git push heroku main

hydrogen.png

以上です。

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?