flaskで作成したwebアプリをherokuでデプロイしたいと考えています.
ローカル上で動くことも確認済です.
Herokuにプッシュしようとすると,以下のエラーが発生したため解決方法をご教授いただきたいです.
Terminal
1$ git push heroku master 2remote: ! Your account メールアドレス does not have access to アプリ名. 3fatal: unable to access 'https://git.heroku.com/アプリ名.git/': The requested URL returned error: 403
ここまでに実行したコードと参考にしたサイトを下記に示します.
Terminal
1$ heroku login 2$ heroku create アプリ名 3$ pip freeze > requirements.txt 4$ echo python-3.7.0 > runtime.txt 5$ echo web: gunicorn app:app --log-file=- > Procfile 6$ git add -A 7$ git commit -m アプリ名 8$ git push heroku master
https://yukituna.com/1146/
https://tanuhack.com/deploy-flask-heroku/
あなたの回答
tips
プレビュー