2

我无法让我的 django 项目使用白噪声和压缩静态文件(包括 libsass)运行。在下面的链接中,我读到只有通过离线压缩所需的静态文件才有可能。但是当我启动 docker 容器时,运行compress命令

docker-compose -f production.yml run --rm django python manage.py compress

给我错误:

ValueError: Missing staticfiles manifest entry for 'sass/app.scss'

在尝试请求该站点时给我以下错误(如预期的那样?):

compressor.exceptions.OfflineGenerationError: You have offline compression enabled but key "..." is missing from offline manifest. You may need to run "python manage.py compress"

设置如下(使用 cookiecutter-django 构建,完整代码库见链接):

STATIC_ROOT = str(ROOT_DIR("staticfiles"))
STATIC_URL = "/static/"
STATICFILES_DIRS = [str(APPS_DIR.path("static"))]
STATICFILES_FINDERS = [
    "django.contrib.staticfiles.finders.FileSystemFinder",
    "django.contrib.staticfiles.finders.AppDirectoriesFinder",
]

STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"

STATICFILES_FINDERS += ["compressor.finders.CompressorFinder"]

COMPRESS_PRECOMPILERS = [("text/x-scss", "django_libsass.SassCompiler")]
COMPRESS_CACHEABLE_PRECOMPILERS = (("text/x-scss", "django_libsass.SassCompiler"),)

COMPRESS_ENABLED = env.bool("COMPRESS_ENABLED", default=True)
COMPRESS_STORAGE = "compressor.storage.GzipCompressorFileStorage"
COMPRESS_URL = STATIC_URL

所以在网上搜索了1天后;我被卡住了......谢谢任何帮助或建议!

代码库:https ://github.com/rl-institut/E_Metrobus/tree/compress

这是用cookiecutter-django-foundation构建的

包括以下更改config/setttings/production.py

COMPRESS_STORAGE = "compressor.storage.GzipCompressorFileStorage"  # Instead of pre-set "storages.backends.s3boto3.S3Boto3Storage"
COMPRESS_ROOT = STATIC_ROOT  # Just in case
COMPRESS_OFFLINE = True  # Needed to run compress offline

可能的相关链接:

编辑

使用贾斯汀的答案解决了它(见下文,有额外的变化)。我的错误是试图用已经运行的容器压缩文件,给我上面的错误。使用以下几行更改 Dockerfile 后(注意重复的collectstaticcmd!):

python /app/manage.py collectstatic --noinput
python /app/manage.py compress --force
python /app/manage.py collectstatic --noinput
/usr/local/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app

和重建图像一切都像一个魅力:) 此外,与上面的设置不同,我必须COMPRESS_ENABLED=True在我的 settings/env 文件中进行设置。

4

2 回答 2

1

我只是有同样的问题。

将此添加到project/compose/production/django/start

python /app/manage.py compress --force

IE

python /app/manage.py collectstatic --noinput
python /app/manage.py compress --force
/usr/local/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app
于 2019-11-20T18:56:00.320 回答
0

这很奇怪,但效果很好。

通过白噪声收集和压缩静态文件

python manage.py collectstatic --clear

设置 COMPRESS_STORAGE = 'compressor.storage.BrotliCompressorFileStorage' 在 CACHE 目录中制作 .br 文件

python manage.py compress --force

设置 COMPRESS_STORAGE = 'compressor.storage.GzipCompressorFileStorage' 在 CACHE 目录中创建 .gzfiles

python manage.py compress --force

添加新的压缩文件到whitenoise:manifest.json, manifest.json.gz, manifest.json.br --no-post-process 选项是告诉whitenoise不要再压缩静态文件。

python manage.py collectstatic --no-post-process

确保按顺序运行命令。

测试白噪声是否有效

python manage.py runserver --nostatic
于 2021-06-01T13:14:23.943 回答