Skip to content

ryanbagwell/django-s3-collectstatic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-s3-collectstatic

This package includes a management command fasts3collectstatic that is intended for use with the S3BotoStorage storage backend. When checking if a file already exists it uses the S3 etag for comparison instead of the default modified time. This is especially useful when deploying to Heroku, since Heroku changes the modified time when deploying.

The code is based on this Django snippet with some fixes and packaging.

Installation

Clone the Git repository or use pip to install:

pip install git+git://github.com/AGoodId/django-s3-collectstatic.git#egg=django-s3-collectstatic

In settings.py:

STATICFILES_STORAGE ="storages.backends.s3boto.S3BotoStorage"
AWS_PRELOAD_METADATA = True

INSTALLED_APPS = [
    # ...
    'django_s3_collectstatic',
]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%