Cleaning up pipeline

This commit is contained in:
Samuel Clay 2021-12-16 20:06:15 -05:00
parent cf948c725a
commit 8be0192702
4 changed files with 8 additions and 6 deletions

View file

@ -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

View file

@ -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/'

View file

@ -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 = (

View file

@ -81,3 +81,4 @@ class FileSystemFinder(PipelineFileSystemFinder):
'Gemfile*',
'node_modules',
]