Heroku 上的 Django 应用程序似乎无法获取对静态文件的更改
Django application on Heroku doesn't seem to pick up changes to static files
我正在 运行在 Heroku 上安装一个 django 应用程序。它能够很好地提供静态文件,当我将 new 静态文件推送到我的存储库时,它们会正确显示,但是当我进行 changes对于现有的静态文件(例如 CSS 更改),它们似乎没有被拾取。
我的产品将其静态文件存储在名为 static/
的文件夹中,该文件夹位于我的每个 Django 应用程序中。然后静态根位于名为 static_root
.
的文件夹中
当 heroku 执行 python manage.py collectstatic
时,对 CSS 文件的更改似乎不会传播到 static_root
(尽管正确的原始 CSS 文件确实存在)。我尝试 运行 python manage.py collectstatic --clear
然后更改的文件被拉到 static_root
,但是服务器仍然服务于旧的和 一段时间后的旧版本CSS 文件返回到 static_root
。即使我尝试手动复制旧版本中的更改始终是服务器发送的版本,并且旧版本迟早会在 static_root
.
中结束
有谁知道为什么会这样?
为了证明我的配置是正确的,这里是我的settings.py
和wsgi.py
settings.py
:
import os
import dj_database_url
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
ROOT_PATH = os.path.join(os.path.dirname(__file__), '..')
DEBUG = bool(int(os.getenv("DJANGO_DEBUG", 1)))
TEMPLATE_DEBUG = DEBUG
STATIC_ROOT = os.path.join(ROOT_PATH, 'jumpcut', 'static_root')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(ROOT_PATH, 'jumpcut', 'static'),
os.path.join(ROOT_PATH, 'viewer', 'static'),
os.path.join(ROOT_PATH, 'builder', 'static'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
# List of callables that know how to import templates from various sources.
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.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the next line for simple clickjacking protection:
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'jumpcut.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'jumpcut.wsgi.application'
TEMPLATE_DIRS = (
os.path.join(ROOT_PATH, 'builder', 'templates'),
os.path.join(ROOT_PATH, 'viewer', 'templates'),
os.path.join(ROOT_PATH, 'jumpcut', 'templates'),
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Our custom apps
# REDACTED
)
wsgi.py
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "jumpcut.settings")
from django.core.wsgi import get_wsgi_application
from dj_static import Cling
application = Cling(get_wsgi_application())
感谢 dazedconfused 的评论,我找到了解决方案。
问题是我的更改被 Heroku 的 ephemeral filesystem 恢复了。我的解决方案是从我的 .gitignore
中删除我的 static_root
,这样当我推送我的更改时,Heroku 会获取新的静态文件。
我正在 运行在 Heroku 上安装一个 django 应用程序。它能够很好地提供静态文件,当我将 new 静态文件推送到我的存储库时,它们会正确显示,但是当我进行 changes对于现有的静态文件(例如 CSS 更改),它们似乎没有被拾取。
我的产品将其静态文件存储在名为 static/
的文件夹中,该文件夹位于我的每个 Django 应用程序中。然后静态根位于名为 static_root
.
当 heroku 执行 python manage.py collectstatic
时,对 CSS 文件的更改似乎不会传播到 static_root
(尽管正确的原始 CSS 文件确实存在)。我尝试 运行 python manage.py collectstatic --clear
然后更改的文件被拉到 static_root
,但是服务器仍然服务于旧的和 一段时间后的旧版本CSS 文件返回到 static_root
。即使我尝试手动复制旧版本中的更改始终是服务器发送的版本,并且旧版本迟早会在 static_root
.
有谁知道为什么会这样?
为了证明我的配置是正确的,这里是我的settings.py
和wsgi.py
settings.py
:
import os
import dj_database_url
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
ROOT_PATH = os.path.join(os.path.dirname(__file__), '..')
DEBUG = bool(int(os.getenv("DJANGO_DEBUG", 1)))
TEMPLATE_DEBUG = DEBUG
STATIC_ROOT = os.path.join(ROOT_PATH, 'jumpcut', 'static_root')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(ROOT_PATH, 'jumpcut', 'static'),
os.path.join(ROOT_PATH, 'viewer', 'static'),
os.path.join(ROOT_PATH, 'builder', 'static'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
# List of callables that know how to import templates from various sources.
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.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the next line for simple clickjacking protection:
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'jumpcut.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'jumpcut.wsgi.application'
TEMPLATE_DIRS = (
os.path.join(ROOT_PATH, 'builder', 'templates'),
os.path.join(ROOT_PATH, 'viewer', 'templates'),
os.path.join(ROOT_PATH, 'jumpcut', 'templates'),
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Our custom apps
# REDACTED
)
wsgi.py
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "jumpcut.settings")
from django.core.wsgi import get_wsgi_application
from dj_static import Cling
application = Cling(get_wsgi_application())
感谢 dazedconfused 的评论,我找到了解决方案。
问题是我的更改被 Heroku 的 ephemeral filesystem 恢复了。我的解决方案是从我的 .gitignore
中删除我的 static_root
,这样当我推送我的更改时,Heroku 会获取新的静态文件。