2
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 5 years have passed since last update.

HerokuAdvent Calendar 2019

Day 12

Heroku に lwc のサンプルをデプロイしてみた

Last updated at Posted at 2019-12-12

ほんのちょっとだけ試してみたものを載せてみます

lwc-recipe-oss のクローン

サンプルとしてこれを使ってみます。

  1. クローンしてパッケージをインストール

    $ git clone https://github.com/trailheadapps/lwc-recipes-oss.git
    $ cd lwc-recipes-oss
    $ npm install
    
  2. ローカルで動かす

    $ npm run watch
    

lwc-recipe-oss-local.png

heroku にプッシュしてみる

レシピにはすでに Procfile があったので、git init で Git 管理して動かせば行けそうです。

  1. Git 管理の対象とする

    $ git init
    
  2. Heroku のアプリを作成する

    $ heroku apps:create lwc-sample
    
  3. Heroku のリモートリポジトリに登録する

    $ git remote add heroku https://git.heroku.com/lwc-sample.git
    

    とやったらfatal: remote heroku already exists.と出てきてしまっていました。
    すでに登録されているようだったので、気にせず次へいってみます。

  4. Heroku にプッシュ

    $ git push heroku master
    

プッシュが終わったら https://lwc-sample.herokuapp.com/ にアクセスします。

lwc-recipe-oss-heroku.png

とまあ、本当に試しただけですが、ありもので上手く動きました。

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