Skip to content

Instantly share code, notes, and snippets.

@ryo-murai
Created February 10, 2017 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryo-murai/96277961265f46745aba39fdc2a26623 to your computer and use it in GitHub Desktop.
Save ryo-murai/96277961265f46745aba39fdc2a26623 to your computer and use it in GitHub Desktop.
heroku toolbeltなしでデプロイまでできる
  • dashboardの New -> Create new appから名前などを入力して新しくアプリを作成
  • Settingsタブの Heroku Git URLにあるURLがリモートリポジトリ
    • 例: https://git.heroku.com/app-name-xxxxx.git
  • このリポジトリのmasterブランチにpushすればデプロイ開始
git remote add heroku https://git.heroku.com/app-name-xxxxx.git
git push heroku master
  • あとはpapertrail add-onなどを入れてログを確認するなど。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment