1
2

More than 1 year has passed since last update.

herokuデプロイ(自分用メモ)

Last updated at Posted at 2021-09-29

githubにコードを載せて、herokuでデプロイする方法

git init
git add -A
git commit -m "コメント"

githubでリポジトリを作る。
git remote add origin (githubに乗ってるurlを貼る)
git push origin master

heroku login
heroku create
git push heroku master

アプリ名を変える
heroku rename (アプリ名)

1
2
1

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
2