Django Admin 在生产 Heroku 中引发 500 错误

Django Admin raise 500 error in production Heroku

我知道这个问题被多次提出,但未能解决问题。 这是我的问题:我的 Django-React 应用程序部署在 Heroku 上并且运行良好(非常简单的应用程序)。我想知道如何访问我的应用程序的 /admin 部分,但我收到 500 内部服务器错误。 该错误出现在本地和 Heroku 中。 DEBUG 是错误的,不幸的是我无法让日志工作,无论是在 Heroku 还是本地 :(

这是我的 settings.py:

from pathlib import Path
import django_heroku
import os

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxx'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False

ALLOWED_HOSTS = ['vmbf.herokuapp.com', '127.0.0.1', 'localhost']


ADMINS = [('username', 'emailaddress')]
MANAGERS = ADMINSEMAIL_HOST = 'host'
SEND_BROKEN_LINK_EMAILS=True
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'emailaddress'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
SERVER_EMAIL = EMAIL_HOST_USER


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',  
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'rest_framework',
    'corsheaders',
    'students',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'corsheaders.middleware.CorsMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',    
]

ROOT_URLCONF = 'django_react_proj.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'students-fe/build')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'django_react_proj.wsgi.application'


# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}


# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
django_heroku.settings(locals())

CORS_ALLOW_ALL_ORIGINS = True
CORS_ALLOWED_ORIGINS = (
    'https://vmbf.herokuapp.com',
)

CSRF_TRUSTED_ORIGINS = [
    'vmbf.herokuapp.com',
]

STATIC_ROOT = os.path.join(BASE_DIR,'students-fe', 'build', 'static')
STATIC_URL = '/static/'

STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

我的文件夹如下所示:

Folder structure

尽管问我更多代码,我是 Django / React 的新手,因此我不确定我应该在这里分享什么。

所以我发现了我的问题。

它与 PostgreSQL 无关,但感谢@Chris 指出这一点,这对我自己来说是更好的开发方法。

问题与我如何管理 settings.py

中的静态文件有关

我不明白 STATIC_ROOT 是如何工作的,我是反过来理解的。反思之后,我是这样做的:

STATIC_ROOT = os.path.join(BASE_DIR,'staticfiles')

我的文件将从这个 staticfiles 目录提供。

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'students-fe','build','static'),
]

但它必须包含我在 students-fe/build/static 文件夹中的 React 应用程序。

最重要的是,当部署到 Heroku 时,有必要添加构建包,我做了但顺序不正确。

首先我需要添加 python(对于 Django):

heroku buildpacks:set heroku/python

然后说在那之前它需要安装nodejs(用于React):

heroku buildpacks:add --index 1 heroku/nodejs

像这样 Heroku 会先做一个 npm 运行 buildpython manage.py collecstatic 需要将静态文件移动到 staticfiles 文件夹中。

希望能帮到别人。 感谢大家的回答。