前提・実現したいこと
djangoを使ってwebアプリを作成しています。
herokuにデプロイした後adminページを開きたいのですが505エラー画面が開きます。
発生している問題・エラーメッセージ
Server Error (500)
試したこと
git initから何回かやり直したのですが、
同じエラーが出てきます。
デプロイの手順としては
git init
heroku login
heroku create app-name
heroku config:set SECRET_KEY='自分のsecret_key'
heroku config
heroku config:set DISABLE_COLLECTSTATIC=1
git add .
git commit -m "Initial commit"
git push heroku master
heroku run python manage.py migrate --settings=project.settings.production
heroku run python manage.py createsuperuser --settings=project.settings.production
補足情報(FW/ツールのバージョンなど)
settings.pyはsettingsフォルダを作成し、その中にbase.py、local.py、production.pyを作成。
manage.pyでのsettingはlocal.pyに設定し、
herokuでの操作時に--settingsを追加しています。
あなたの回答
tips
プレビュー