前提・実現したいこと
Djangoで作成したWebサービスをherokuで公開したいと思っています。
https://qiita.com/KENOSIN/items/83d138b49fffd6a1be07
のサイトを参考に作成しているのですが、git push heroku masterのあとの、heroku ps:scale web=1でエラーが出てしまいます。
解決方法がありましたら教えてください。
発生している問題・エラーメッセージ
» Error: Missing required flag: » -a, --app APP app to run command against » See more help with --help
該当のソースコード
git ls-filesで出てきたファイル構造とProcfileの中身を載せます。
↓git ls-filesで出たファイル構造
.gitignore .vscode/settings.json Django-Boost Procfile heroku.tar.gz image/icon.jpg manage.py media/1.png media/71mNClCE6wL._AC_SX466_.jpg media/71mNClCE6wL._AC_SX466__57b2CI6.jpg media/71mNClCE6wL._AC_SX466__CZ7Begg.jpg media/71mNClCE6wL._AC_SX466__DVOApC2.jpg media/71mNClCE6wL._AC_SX466__SFTA0Rd.jpg media/71mNClCE6wL._AC_SX466__ksofMgK.jpg media/71mNClCE6wL._AC_SX466__lS92XAK.jpg media/71mNClCE6wL._AC_SX466__mSylE7l.jpg media/817-300x300.jpg media/animal_koumori.png media/animal_koumori_0lwV5vB.png media/animal_koumori_2i4B2yX.png media/animal_koumori_H5O7JTK.png media/animal_koumori_MUYZKQq.png media/animal_koumori_cKcHZS4.png media/daburu.jpg media/daburu_R6r2zmB.jpg media/daburu_eTy7Z6E.jpg media/girl-1828541_1280.jpg media/hiyoko01-300x300.png media/hiyoko01-300x300_tnXodfT.png media/note.jpg media/playground-550535_1280.jpg media/serve.jpg requirements.txt runtime.txt static/css/style.css tabletennis/__init__.py tabletennis/asgi.py tabletennis/settings.py tabletennis/urls.py tabletennis/wsgi.py tabletennisapp/__init__.py tabletennisapp/admin.py tabletennisapp/apps.py tabletennisapp/forms.py tabletennisapp/middleware/login.py tabletennisapp/migrations/0001_initial.py tabletennisapp/migrations/0002_auto_20200407_0833.py tabletennisapp/migrations/0003_auto_20200407_0840.py tabletennisapp/migrations/0004_auto_20200407_1021.py tabletennisapp/migrations/0005_auto_20200409_0112.py tabletennisapp/migrations/0006_auto_20200409_0620.py tabletennisapp/migrations/0007_auto_20200409_0715.py tabletennisapp/migrations/0008_auto_20200409_1249.py tabletennisapp/migrations/0009_auto_20200409_1250.py tabletennisapp/migrations/0010_profile_created_at.py tabletennisapp/migrations/0011_profile_post_number.py tabletennisapp/migrations/__init__.py tabletennisapp/models.py tabletennisapp/tests.py tabletennisapp/urls.py tabletennisapp/views.py templates/about.html templates/base.html templates/category.html templates/categorypop.html templates/create.html templates/delete.html templates/detail.html templates/follow.html templates/follower.html templates/login.html templates/myprofile.html templates/myprofilepop.html templates/otherprofile.html templates/otherprofilepop.html templates/passworddone.html templates/passwordreset.html templates/postedit.html templates/profileedit.html templates/register.html templates/registration/password_reset_complete.html templates/registration/password_reset_confirm.html templates/registration/password_reset_done.html templates/registration/password_reset_form.html templates/search.html templates/signup.html templates/timeline.html templates/timelinepop.html
↓Procfileの中身
web: gunicorn tabletennis.wsgi --log-file -
試したこと
https://teratail.com/questions/125822、
https://note.com/shoakkin/n/n7d98b4e4740d
などのことは一通り試してみましたがうまくいきませんでした。
あなたの回答
tips
プレビュー