Skip to content
This repository has been archived by the owner on Nov 7, 2018. It is now read-only.

Commit

Permalink
getting rid of pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe committed Oct 25, 2015
1 parent 5f81952 commit d83ee79
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
18 changes: 7 additions & 11 deletions headsupper/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,13 @@

# Third party
'django_jinja',
'pipeline',

# Django apps
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',

# allauth
Expand Down Expand Up @@ -96,7 +94,7 @@

TIME_ZONE = config('TIME_ZONE', default='UTC')

USE_I18N = config('USE_I18N', default=True, cast=bool)
USE_I18N = config('USE_I18N', default=False, cast=bool)

USE_L10N = config('USE_L10N', default=True, cast=bool)

Expand All @@ -106,15 +104,13 @@
STATIC_URL = config('STATIC_URL', '/static/')
# STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'

# STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'

STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'pipeline.finders.CachedFileFinder',
'pipeline.finders.PipelineFinder',
)
# STATICFILES_FINDERS = (
# 'django.contrib.staticfiles.finders.FileSystemFinder',
# 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'pipeline.finders.CachedFileFinder',
# 'pipeline.finders.PipelineFinder',
# )

# MEDIA_ROOT = config('MEDIA_ROOT', default=os.path.join(BASE_DIR, 'media'))
# MEDIA_URL = config('MEDIA_URL', '/media/')
Expand Down
14 changes: 0 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ pytz==2015.4
# sha256: b0wujFraFwOf8cHji8Ub6pMXrzZ24oRmFIyN9fx48TI
django-jinja==1.4.1


# sha256: VYVza7U0XcnLcEwSkq997IUSZmqw-RbG8mduDwYCMeg
# sha256: kpfCKE84KWGnvdmJeFlixWKX1HYUJT57vdglG2nUrOQ
whitenoise==2.0.2
# sha256: UCb-DKlgBwm2iucOCGocoADArwLoisjLEIAwxrW-jG0
html2text==2015.6.21
# sha256: IPl2zc4CpCtpzoDp4DiXpRgUs21EizcohUYIbrxHMUY
Expand All @@ -51,13 +47,3 @@ requests==2.7.0
jsonfield==1.0.3
# sha256: 67kjSmrxku6ahiO8lapstSNVdj0E_u2xmoiM2kC7NGY
django-allauth==0.23.0
# sha256: xxHohhXvN7I1nOMJeOrnxl5UkkrrBDIpZWxeI5Bl5ZY
# sha256: pakJ9APQ6lbyEWGJSf9ON48W5amWvegZvStbDnqbuP4
django-pipeline==1.5.4
# sha256: 8vD3vEj1i6pOtoC1uaYATDdlYBdS8vNmZnflaFsW79E
PyReact==0.5.2
# sha256: 1HagO69cARh534AqwbHP69dDxThy6SDQiZJtEyRZnyA
# sha256: ZhjFSvf8dM1OwEKFM4hdjfu7Mhu4S1F0mIA6dJg4WvA
PyExecJS==1.1.0
# sha256: rzV4nwi7JKRqO5pyidbWaHsMN99zNv8u3BfHpsOPLmQ
django-pipeline-browserify==0.2.0

0 comments on commit d83ee79

Please sign in to comment.