mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
feat(aws/s3): use Collectfast by @antonagestam for faster collectstatic.
This commit is contained in:
parent
d0c41c00cf
commit
04f0511111
|
@ -4,5 +4,6 @@
|
|||
|
||||
gunicorn==0.17.4
|
||||
django-storages==1.1.4
|
||||
Collectfast==0.1.13
|
||||
gevent==0.13.8
|
||||
boto==2.9.5
|
||||
boto==2.9.5
|
||||
|
|
|
@ -100,7 +100,7 @@ class Common(Configuration):
|
|||
join(BASE_DIR, 'fixtures'),
|
||||
)
|
||||
########## END FIXTURE CONFIGURATION
|
||||
|
||||
|
||||
########## EMAIL CONFIGURATION
|
||||
EMAIL_BACKEND = values.Value('django.core.mail.backends.smtp.EmailBackend')
|
||||
########## END EMAIL CONFIGURATION
|
||||
|
@ -348,6 +348,10 @@ class Production(Common):
|
|||
AWS_AUTO_CREATE_BUCKET = True
|
||||
AWS_QUERYSTRING_AUTH = False
|
||||
|
||||
# see: https://github.com/antonagestam/collectfast
|
||||
AWS_PRELOAD_METADATA = True
|
||||
INSTALLED_APPS += ("collectfast", )
|
||||
|
||||
# AWS cache settings, don't change unless you know what you're doing:
|
||||
AWS_EXPIREY = 60 * 60 * 24 * 7
|
||||
AWS_HEADERS = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user