🦁
HTML&JS のWebページをHerokuにデプロイする
はじめに
WebページをHerokuにデプロイするときに躓いたので、忘れないためにメモしました。
1. Herokuでアプリを作成
2. ルートディレクトリに以下のファイルを作成
package.json
{}
index.php
<?php include_once("index.html"); ?>
※index.html
は適宜変更
3. Heroku CLIでデプロイ
heroku login
cd [作成したディレクトリ]
git init
heroku git:remote -a [herokuのアプリ名]
git add .
git commit -am "heroku"
git push heroku master
参考
Discussion