私は、herokuで本番環境とステージング環境を管理することは、特にドメイン、gitなどで本当に苦痛なプロセスであることに気づきました.
1) htest というアプリを作成しました。
2) htest ディレクトリで、以下を実行しました。
heroku create --app htest-staging --remote staging
heroku create --app htest-production --remote production
heroku domains:add staging.mydomain.com --app htest-staging --remote staging
heroku domains:add production.mydomain.com --app htest-production --remote production
3) アプリをコミットしてサービスを開始しました
git push staging master
heroku ps --app htest-staging --remote staging
3) htest-staging.herokuapp.com の cname を使用して route53 にドメインを追加します。
heroku info --app htest-staging
=== htest-staging
Web URL: http://htest-staging.herokuapp.com/
予想通り、Webページが見つかりません。
さらに厄介なのは、http://htest-staging.herokuapp.com/にアクセスすると、次のページが表示されることです。
Heroku | Welcome to your new app!
Refer to the documentation if you need help deploying.
私のpythonアプリはhello worldと言うべきでした。
それで..どうすれば解決できますか?