mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Cleaning up pipeline
This commit is contained in:
parent
cf948c725a
commit
8be0192702
4 changed files with 8 additions and 6 deletions
|
@ -154,11 +154,12 @@ javascripts:
|
|||
|
||||
stylesheets:
|
||||
common:
|
||||
- css/reader/*.css
|
||||
- css/reader/reader.css
|
||||
- css/controls/*.css
|
||||
- css/pages/*.css
|
||||
- css/status.css
|
||||
- css/darkmode.css
|
||||
- css/reader/modals.css
|
||||
- css/reader/status.css
|
||||
- css/reader/darkmode.css
|
||||
- css/jquery-ui/jquery.theme.css
|
||||
- css/jquery.tipsy.css
|
||||
- css/vendor/bootstrap-progressbar.css
|
||||
|
|
|
@ -20,7 +20,7 @@ SESSION_COOKIE_DOMAIN = 'localhost'
|
|||
DOCKERBUILD = True
|
||||
DEBUG = False
|
||||
# DEBUG = True
|
||||
DEBUG_ASSETS = True
|
||||
DEBUG_ASSETS = False
|
||||
DEBUG_QUERIES = DEBUG
|
||||
DEBUG_QUERIES_SUMMARY_ONLY = True
|
||||
MEDIA_URL = '/media/'
|
||||
|
|
|
@ -778,13 +778,13 @@ accept_content = ['pickle', 'json', 'msgpack', 'yaml']
|
|||
STATIC_URL = '/static/'
|
||||
|
||||
# STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage'
|
||||
STATICFILES_STORAGE = 'utils.pipeline_utils.GzipPipelineStorage'
|
||||
# STATICFILES_STORAGE = 'utils.pipeline_utils.PipelineStorage'
|
||||
STATICFILES_STORAGE = 'utils.pipeline_utils.GzipPipelineStorage'
|
||||
STATICFILES_FINDERS = (
|
||||
# 'pipeline.finders.FileSystemFinder',
|
||||
'utils.pipeline_utils.FileSystemFinder',
|
||||
# 'django.contrib.staticfiles.finders.FileSystemFinder',
|
||||
# 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
||||
'utils.pipeline_utils.FileSystemFinder',
|
||||
'pipeline.finders.PipelineFinder',
|
||||
)
|
||||
STATICFILES_DIRS = (
|
||||
|
|
|
@ -81,3 +81,4 @@ class FileSystemFinder(PipelineFileSystemFinder):
|
|||
'Gemfile*',
|
||||
'node_modules',
|
||||
]
|
||||
|
Loading…
Add table
Reference in a new issue