LoginSignup
3
3

More than 5 years have passed since last update.

heroku create

Posted at

herokuで新しいアプリを作るとき、本番用と開発用を分けたいときのコマンド

本番用
heroku create app-name --stack cedar
開発用
heroku create app-name --remote repository-name --stack cedar

pushするときは

本番用
git push heroku master
開発用
git push repository-name master
3
3
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
3
3