web-dev-qa-db-ja.com

Django herokuの静的ファイル

Djangoアプリをherokuにデプロイし、「git Pushherokumaster」を使用して問題なく動作しました。

次に、「heroku create second-app -r staging」を使用して、同じgitで2番目のアプリを作成しました。

を使用してプッシュ:gitプッシュステージングマスター

2番目のアプリを開くと、静的ファイルが取得または読み込まれません(つまり、css、js、または画像が機能しません)

これは非常に紛らわしいです-助けてください!

私の設定ファイルは下にあります

import os
import platform
import dj_database_url

DEBUG = True
TEMPLATE_DEBUG = DEBUG

# This should work for any deployment
BASE_DIR = os.path.abspath(os.path.join(os.path.dirname( __file__ ), '..'))

ADMINS = (
    ('me', 'me@gmailcom'),
)

MANAGERS = ADMINS
# LOCAL SETTINGS
if platform.system() in ['Windows', 'Darwin']:
    #EV = 'LOCAL'
    DATABASES = {
             'default': {
                 'ENGINE': 'Django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'Oracle'.
                 'NAME': BASE_DIR + '//db//db.sqlite3',
                 'USER': '',                      # Not used with sqlite3.
                 'PASSWORD': '',                  # Not used with sqlite3.
                 'Host': '',                      # Set to empty string for localhost. Not used with sqlite3.
                 'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
             }
    }
    # Hosts/domain names that are valid for this site; required if DEBUG is False
    # See https://docs.djangoproject.com/en/1.4/ref/settings/#allowed-hosts
    ALLOWED_HOSTS = []

    CACHES = {
    'default': {
        'BACKEND': 'Django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'unique-snowflake',
        'TIMEOUT': 86400,
        'OPTIONS': {
            'MAX_ENTRIES': 10000
            },
        }
    }

# HEROKU SETTINGS
else:
    #EV = 'HEROKU'
    # DEBUG = False
    DATABASES = {}
    DATABASES['default'] =  dj_database_url.config()

    # Honor the 'X-Forwarded-Proto' header for request.is_secure()
    SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

    # Hosts/domain names that are valid for this site; required if DEBUG is False
    # See https://docs.djangoproject.com/en/1.4/ref/settings/#allowed-hosts
    # Allow all Host headers
    ALLOWED_HOSTS = ['*']

    # Todo: ammar - update to Memcached
    CACHES = {
    'default': {
        'BACKEND': 'Django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'unique-snowflake',
        'TIMEOUT': 86400,
        'OPTIONS': {'MAX_ENTRIES': 10000},
        }
    }

TIME_ZONE = 'Europe/London'

LANGUAGE_CODE = 'en-gb'

SITE_ID = 1

USE_I18N = True

USE_L10N = True

USE_TZ = False

MEDIA_ROOT = ''

MEDIA_URL = '/media/'

STATIC_ROOT = ''

STATIC_URL = '/static/'


STATICFILES_DIRS = ()

STATICFILES_FINDERS = (
    'Django.contrib.staticfiles.finders.FileSystemFinder',
    'Django.contrib.staticfiles.finders.AppDirectoriesFinder',
)


SECRET_KEY = '***'

TEMPLATE_LOADERS = (
    'Django.template.loaders.filesystem.Loader',
    'Django.template.loaders.app_directories.Loader',
#     'Django.template.loaders.eggs.Loader',

)

MIDDLEWARE_CLASSES = (
    'Django.middleware.common.CommonMiddleware',
    'Django.contrib.sessions.middleware.SessionMiddleware',
    'Django.middleware.csrf.CsrfViewMiddleware',
    'Django.contrib.auth.middleware.AuthenticationMiddleware',
    'Django.contrib.messages.middleware.MessageMiddleware',
    # Uncomment the next line for simple clickjacking protection:
    # 'Django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'sm.urls'

# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'sm.wsgi.application'

TEMPLATE_DIRS = (
    os.path.join(BASE_DIR, 'mytemplates')
)

INSTALLED_APPS = (
    'Django.contrib.auth',
    'Django.contrib.contenttypes',
    'Django.contrib.sessions',
    'Django.contrib.sites',
    'Django.contrib.messages',
    'Django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'Django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    'Django.contrib.admindocs',
    'smcore',
    'south',
    'Django.contrib.humanize',
)



LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'filters': {
        'require_debug_false': {
            '()': 'Django.utils.log.RequireDebugFalse'
        }
    },
    'handlers': {
        'mail_admins': {
            'level': 'ERROR',
            'filters': ['require_debug_false'],
            'class': 'Django.utils.log.AdminEmailHandler'
        }
    },
    'loggers': {
        'Django.request': {
            'handlers': ['mail_admins'],
            'level': 'ERROR',
            'propagate': True,
        },
    }
}

LOGIN_URL = '/login/'
LOGIN_REDIRECT_URL = '/getStarted/'
LOGOUT_URL = '/do_logout/'

# e-mail server
EMAIL_Host_USER = '***@gmail.com'
EMAIL_Host= 'smtp.gmail.com'
# EMAIL_PORT = 465
EMAIL_USE_TLS = True
EMAIL_Host_PASSWORD = '***'
DEFAULT_FROM_EMAIL = '***@gmail.com'
SERVER_EMAIL = '***@gmail.com'

更新

コードのコピーを取り、再デプロイしました。これは、設定に対する次の更新で機能しました。

STATIC_ROOT = 'staticfiles'

STATIC_URL = '/static/'

STATICFILES_DIRS = (
    (os.path.join(BASE_DIR,'smcore','static')),
)


STATICFILES_FINDERS = (

    #'Django.contrib.staticfiles.finders.FileSystemFinder',
    #'Django.contrib.staticfiles.finders.AppDirectoriesFinder',
    #'Django.contrib.staticfiles.finders.DefaultStorageFinder',
)

次に、コードを分岐し(マスターとステージングがあるため)、新しいherokuリモートをステージングブランチに同期しました。次に、git Push staging staging:masterを実行し、完全なアップロードを実行しました。もう一度同じ場所に戻ってきました...助けて!!!

16
Ammar Akhtar

最終的に、私のurlsファイルで以下を使用してこれを解決しました-この質問から: Heroku-静的ファイルの処理Django app

from <app> import settings
urlpatterns += patterns('',
        (r'^static/(?P<path>.*)$', 'Django.views.static.serve', {'document_root': settings.STATIC_ROOT}),
    )
17
Ammar Akhtar

私も同じ問題に取り組んできました。 Davidが推奨するソリューションは開発でのみ使用されている(本番では使用されていない)ため、使用しないようにしました(参照: Heroku静的ファイルがロードされていない、Django

そして、これが私のコードで変更した2つのことです。

(私はDjango 1.7)を使用しています

1)settings.py

これらの行を設定ファイルに追加します

BASE_DIR = os.path.dirname(os.path.dirname(__file__))
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_STORAGE = 'whitenoise.Django.GzipManifestStaticFilesStorage'
TEMPLATE_DIRS = (
    os.path.join(BASE_DIR,  'templates'),
    # Add to this list all the locations containing your static files 
)

STATIC_ROOT:これはDjango(a) "python manage.py collectstatic"を実行するときに静的ファイルを配置し、(b)アプリケーションを実行するときに静的ファイルを見つける場所を指示します

TEMPLATE_DIRS:これはDjango "python manage.pycollectstatic"を実行したときに静的ファイルを検索するときに静的ファイルを探す場所を指示します

2)wsgi.py

元々私のファイルは:

import os
os.environ.setdefault("Django_SETTINGS_MODULE", "xxxx.settings")

from Django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

そして私はそれを次のように変更しました:

import os
os.environ.setdefault("Django_SETTINGS_MODULE", "xxxx.settings")

from Django.core.wsgi import get_wsgi_application
from whitenoise.Django import DjangoWhiteNoise
application = get_wsgi_application()
application = DjangoWhiteNoise(application)

ホワイトノイズの詳細については、こちらをお読みください: https://devcenter.heroku.com/articles/Django-assets#whitenoise


また、ホワイトノイズをインストールすることを忘れないでください:pip install whitenoise == 2.0.6

プロジェクトをデプロイする前に、次を実行します:python manage.py collectstatic

これにより、STATIC_ROOT(settings.pyで宣言)で示されるフォルダーが作成され、すべての静的ファイルが含まれます。

8
phanhuy152

STATIC_ROOTの設定をせずにstaticfilesアプリを使用しているためと思われます。

比較すると、私のsettings.pyは次のようなものです。

# Static asset configuration
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
STATIC_ROOT = 'staticfiles'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, '../myapp/static')

STATICFILES_DIRSも設定する必要があります(この変数の私の設定はおそらくあなたの設定と同じではないことに注意してください)

次に、コードをプッシュして再試行します。それでも機能しない場合は、これを使用してデバッグできます: https://devcenter.heroku.com/articles/Django-assets#debugging

3
David D.

Django 1.3以降、次のことができるようになりました

# only showing relevant imports
from Django.conf import settings
from Django.conf.urls.static import static


urlpatterns = patterns(
    '',

    # your urls go here
)

if settings.DEBUG:
    urlpatterns += static(settings.STATIC_URL,
                          document_root=settings.STATIC_ROOT)
    urlpatterns += static(settings.MEDIA_URL,
                          document_root=settings.MEDIA_ROOT)
1
Matt Briançon

Django 2.1.7の場合、機能するために次の変更を行いました。

  1. whitenoiseに加えて、requirements.txtにgunicornを追加しました

  2. 事業 settings.pyには次のものが必要です。

    A)静的設定:

    STATIC_URL = '/static/'
    STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
    
    STATICFILES_DIRS = [
        os.path.join(BASE_DIR, "static"), 
    ]
    

    B)ミドルウェアにwhitenoiseを追加します:

    MIDDLEWARE = [
       .....
       'whitenoise.middleware.WhiteNoiseMiddleware',
    ]
    

最後に、変更をコミットしてプッシュし、アプリを平和的にデプロイします。

0
Ali Ezzat Odeh