Django压缩器和manage.py压缩问题

我的问题:当settings.py中debug = true时,django compress工作得很好,当所有js连接一切并缩小时,debug-false基本上是无用的:如果我设置COMPRESS_ENABLED = True(debug = false时默认) 500错误,但不知道发生了什么事情:

它:mysite italo $ ./manage.py runserver执行系统检查...

System check identified no issues (0 silenced).
August 25, 2016 - 17:37:47
Django version 1.10, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
[25/Aug/2016 17:37:51] "GET / HTTP/1.1" 500 6098
[25/Aug/2016 17:37:51] "GET /static/scss/app.css HTTP/1.1" 304 0
[25/Aug/2016 17:37:51] "GET /static/CACHE/js/f6979994c378.js HTTP/1.1" 200 3524
[25/Aug/2016 17:37:51] "GET /static/CACHE/js/029dc704a0f3.js HTTP/1.1" 200 3788
[25/Aug/2016 17:37:51] "GET /static/CACHE/js/bd8a8faf4632.js HTTP/1.1" 200 135985
[25/Aug/2016 17:37:51] "GET /static/CACHE/js/50721ef0285b.js HTTP/1.1" 200 98
[25/Aug/2016 17:37:51] "GET /static/CACHE/js/2f9428d5f621.js HTTP/1.1" 200 138405

看起来像我得到了几个JavaScript文件加载(显然不是连接在一起),但css文件被缩小...我的解决方案曾经是在生产上设置COMPRESS_ENABLED = False,然后编写一个脚本来执行:

1)收敛

2)压缩 - 力(因为ompressor被禁用,我试图在运行runserver之前暂时启用它,并使用压缩,但我得到相同的结果)

3)runserver

我得到的是单独的文件,他们没有缩小,我没有得到任何错误,但有不同的非缩小js文件是非常没用的恕我直言。

我试过了

  • 使用ALLOWED_HOSTS = ['*']
  • 更新到压缩机的最新版本
  • 禁用whitenoise
  • ALLOWED_HOSTS = ['*']
  • 禁用css处理器(即使sas​​s编译好,我只是不会在debug = false时得到连接)
  • 这是在许多帖子中建议,但不起作用。 我的第一个问题:我如何解决这个问题?

    我很无知,在这一点上,我的第二个问题是,如果有一个替代django压缩机的工作。

    import os
    import dj_database_url
    import compressor
    import socket
    
    # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
    BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
    ROOT_PATH = os.path.dirname(__file__)
    
    # Quick-start development settings - unsuitable for production
    # See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
    
    # SECURITY WARNING: keep the secret key used in production secret!
    SECRET_KEY = os.environ['SECRET_KEY']
    
    # SECURITY WARNING: don't run with debug turned on in production!
    
    if os.environ['PRODUCTION'] == '1':
        DEBUG = False
        # ALLOWED_HOSTS = ['itmandar.herokuapp.com']
    else:
        DEBUG = True
        # ALLOWED_HOSTS = ["localhost", "127.0.0.1",]
        print 'DEBUG', DEBUG, 'assuming we're not in production'
    
    ALLOWED_HOSTS = ['*']
    
    # Application definition
    
    INSTALLED_APPS = [
        'myresume.apps.MyresumeConfig',
        'sass_processor',
        'django_markup',
        'compressor',
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',
    ]
    if DEBUG:
        INSTALLED_APPS += ['template_repl']
    
    MIDDLEWARE = [
        'django.middleware.security.SecurityMiddleware',
        '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',
        'whitenoise.middleware.WhiteNoiseMiddleware',
    ]
    
    ROOT_URLCONF = 'mysite.urls'
    
    TEMPLATES = [
        {
            'BACKEND': 'django.template.backends.django.DjangoTemplates',
            'DIRS': [os.path.join(BASE_DIR, 'myresume/templates/')],
            'APP_DIRS': True,
    
            'OPTIONS': {
                'debug' : DEBUG,
                '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 = 'mysite.wsgi.application'
    
    # Database
    # https://docs.djangoproject.com/en/1.10/ref/settings/#databases
    
    
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.postgresql_psycopg2',
            'NAME': 'mysite',
            'USER': 'it',
            'PASSWORD': os.environ['DB_KEY'],
            'HOST': 'localhost',
            'PORT': '',
        }
    }
    
    # Password validation
    # https://docs.djangoproject.com/en/1.10/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/1.10/topics/i18n/
    
    LANGUAGE_CODE = 'en-us'
    
    TIME_ZONE = 'UTC'
    
    USE_I18N = True
    
    USE_L10N = True
    
    USE_TZ = True
    
    
    # Update database configuration with $DATABASE_URL.
    db_from_env = dj_database_url.config()
    DATABASES['default'].update(db_from_env)
    
    # Simplified static file serving.
    # https://warehouse.python.org/project/whitenoise/
    
    # django filepicker
    FILEPICKER_API_KEY = os.environ['FILEPICKER_API_KEY']
    FILEPICKER_API_SECRET = os.environ['FILEPICKER_API_SECRET']
    CWD = os.getcwd()
    MEDIA_ROOT = os.path.join(CWD, 'media')
    
    
    # Static files (CSS, JavaScript, Images)
    # https://docs.djangoproject.com/en/1.9/howto/static-files/
    
    PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
    
    STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
    # STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
    STATIC_ROOT = os.path.join(BASE_DIR, "static")
    STATIC_URL = '/static/'
    
    STATICFILES_FINDERS = (
        'django.contrib.staticfiles.finders.FileSystemFinder',
        'django.contrib.staticfiles.finders.AppDirectoriesFinder',
        'compressor.finders.CompressorFinder',
    )
    
    # media urls
    # MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
    MEDIA_URL = '/media/'
    
    
    
    STATICFILES_DIRS = [
        os.path.join(PROJECT_ROOT, 'static'),
    ]
    
    # sass processor settings
    # SASS_PROCESSOR_ROOT = os.path.join(ROOT_PATH, 'static')
    SASS_PRECISION = 8
    
    SASS_PROCESSOR_ENABLED = DEBUG
    COMPRESS_JS_FILTERS = ['compressor.filters.jsmin.JSMinFilter']
    COMPRESS_OFFLINE = not DEBUG
    
    if DEBUG:
        #sass processor
        SASS_OUTPUT_STYLE = 'nested'
    else:   
        #sass processor
        SASS_OUTPUT_STYLE = 'compressed'
    

    因为这个问题与django在debug = false时没有提供静态文件有关,所以我决定使用这个解决方案http://www.kennethreitz.org/essays/introducing-dj-static

    它是一个名为dj-static的模块

    问题现在已经解决了。

    链接地址: http://www.djcxy.com/p/68521.html

    上一篇: Django compressor and manage.py compress problems

    下一篇: Gulp CSS minify & gzip + django