前提・実現したいこと
初めて質問です。よろしくお願いします。
現在「動かして学ぶ! Python Django開発入門」という書籍を使いdjangoの学習をしています。
現在本番環境にデプロイを目指しているのですが、ターミナルでcollectstaticを入力した下記のエラーが発生します。
発生している問題・エラーメッセージ
You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
該当のソースコード settings.py
Python Django
1from .settings_common import * 2 3DEBUG = False 4 5ALLOWED_HOSTS = [os.environ.get('ALLOWED_HOSTS')] 6 7STATIC_ROOT = '/usr/share/nginx/html/static' 8MEDIA_ROOT = '/usr/share/nginx/html/media' 9 10AWS_SES_ACCESS_KEY_ID = os.environ.get('AWS_SES_ACCESS_KEY_ID') 11AWS_SES_SECRECT_ACCESS_KEY_ID = os.environ.get('AWS_SES_SECRET_ACCESS_KEY') 12 13LOGGING = { 14 'version': 1, 15 'disable_existing_loggers': False, 16 17 # ロガーの設定 18 'loggers': { 19 # Djangoが利用するロガー 20 'django': { 21 'handlers': ['file'], 22 'level': 'INFO', 23 }, 24 # diaryアプリケーションが利用するロガー 25 'diary': { 26 'handler': ['file'], 27 'level': 'INFO', 28 }, 29 }, 30 # ハンドラの設定 31 'handlers': { 32 'file': { 33 'level': 'INFO', 34 'class': 'logging.handlers.TimedRotatingFileHandler', 35 'filename': os.path.join(BASE_DIR, 'logs/django.log'), 36 'formatter': 'prod', 37 'when': 'D', 38 'interval': 1, 39 'backupCount': 7, 40 }, 41 }, 42 'formattets': { 43 'prod': { 44 'format': '\t'.join([ 45 '%(asctime)s', 46 '[%(levelname}s]', 47 '%(pathname)s(Line:%(lineno)d)', 48 '%(message)s' 49 ]) 50 }, 51 } 52}
該当のソースコード settings_common.py
Python Django
1from django.contrib.messages import constants as messages 2import os 3 4# Build paths inside the project like this: os.path.join(BASE_DIR, ...) 5BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 6 7 8# Quick-start development settings - unsuitable for production 9# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ 10 11# SECURITY WARNING: keep the secret key used in production secret! 12SECRET_KEY = '3kqqtd7&hc5)hn)n!*mxopt4_*)$g=@+m9$u6(%t8r2k83vq3-' 13 14# SECURITY WARNING: don't run with debug turned on in production! 15 16 17# Application definition 18 19INSTALLED_APPS = [ 20 'django.contrib.admin', 21 'django.contrib.auth', 22 'django.contrib.contenttypes', 23 'django.contrib.sessions', 24 'django.contrib.messages', 25 'django.contrib.staticfiles', 26 'diary.apps.DiaryConfig', 27 'accounts.apps.AccountsConfig', 28 29 'django.contrib.sites', 30 'allauth', 31 'allauth.account', 32 33 'django_ses', 34] 35 36MIDDLEWARE = [ 37 'django.middleware.security.SecurityMiddleware', 38 'django.contrib.sessions.middleware.SessionMiddleware', 39 'django.middleware.common.CommonMiddleware', 40 'django.middleware.csrf.CsrfViewMiddleware', 41 'django.contrib.auth.middleware.AuthenticationMiddleware', 42 'django.contrib.messages.middleware.MessageMiddleware', 43 'django.middleware.clickjacking.XFrameOptionsMiddleware', 44] 45 46ROOT_URLCONF = 'private_diary.urls' 47 48TEMPLATES = [ 49 { 50 'BACKEND': 'django.template.backends.django.DjangoTemplates', 51 'DIRS': [], 52 'APP_DIRS': True, 53 'OPTIONS': { 54 'context_processors': [ 55 'django.template.context_processors.debug', 56 'django.template.context_processors.request', 57 'django.contrib.auth.context_processors.auth', 58 'django.contrib.messages.context_processors.messages', 59 ], 60 }, 61 }, 62] 63 64WSGI_APPLICATION = 'private_diary.wsgi.application' 65 66 67# Database 68# https://docs.djangoproject.com/en/2.2/ref/settings/#databases 69 70DATABASES = { 71 'default': { 72 'ENGINE': 'django.db.backends.postgresql_psycopg2', 73 'NAME': 'private_diary', 74 'USER': os.environ.get('DB_USER'), 75 'PASSWORD': os.environ.get('DB_PASSWORD'), 76 'HOST': '', 77 'PORT': '', } 78} 79 80 81# Password validation 82# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators 83 84AUTH_PASSWORD_VALIDATORS = [ 85 { 86 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 87 }, 88 { 89 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 90 }, 91 { 92 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 93 }, 94 { 95 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 96 }, 97] 98 99 100# Internationalization 101# https://docs.djangoproject.com/en/2.2/topics/i18n/ 102 103LANGUAGE_CODE = 'ja' 104 105TIME_ZONE = 'Asia/Tokyo' 106 107USE_I18N = True 108 109USE_L10N = True 110 111USE_TZ = True 112 113 114# Static files (CSS, JavaScript, Images) 115# https://docs.djangoproject.com/en/2.2/howto/static-files/ 116 117STATIC_URL = '/static/' 118 119STATICFILES_DIRS = ( 120 os.path.join(BASE_DIR, 'static'), 121) 122 123MESSAGE_TAGS = { 124 messages.ERROR: 'aleart alert-danger', 125 messages.WARNING: 'alert alert-warning', 126 messages.SUCCESS: 'alert alert-success', 127 messages.INFO: 'alert alert-info', 128} 129 130AUTH_USER_MODEL = 'accounts.CustomUser' 131 132SITE_ID = 1 133 134AUTHENTICATION_BACKENDS = ( 135 'allauth.account.auth_backends.AuthenticationBackend', 136 'django.contrib.auth.backends.ModelBackend', 137) 138 139ACCOUNT_AUTHENTICATION_METHOD = 'email' 140ACCOUNT_USERNAME_REQUIRED = False 141 142ACCOUNT_EMAIL_VERIFICATION = 'mandatory' 143ACCOUNT_EMAIL_REQUIRED = True 144 145LOGIN_REDIRECT_URL = 'diary:list' 146ACCOUNT_LOGOUT_REDIRECT_URL = 'account_login' 147 148ACCOUNT_LOGOUT_ON_GET = True 149 150MEDIA_URL = '/media/' 151 152LOGIN_REDIRECT_URL = 'diary:diary_list' 153
試したこと
エラーの理由を調べたところ、STATIC_ROOTが設定できていないとのエラーですが、上記のように設定できていると思います。
補足情報(FW/ツールのバージョンなど)
settings.py は settings_commonに分割を行っています。
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/11 05:04
2020/05/11 05:49
2020/05/11 06:59