|
sync_media_s3
sync your MEDIA_ROOT folder to S3
Django command that scans all files in your settings.MEDIA_ROOT folder and uploads them to S3 with the same directory structure. This command can optionally do the following but it is off by default:
Example Usage# Upload files to S3 into the bucket 'mybucket' $ ./manage.py sync_media_s3 mybucket # Upload files to S3 into the bucket 'mybucket' and enable gzipping CSS/JS files and setting of a far future expires header $ ./manage.py sync_media_s3 mybucket --gzip --expires Required libraries and settingsThis management command requires the boto library and was tested with version 1.4c: http://code.google.com/p/boto/ It also requires an account with Amazon Web Services (AWS) and the AWS S3 keys. The keys are added to your settings.py file, for example: # settings.py AWS_ACCESS_KEY_ID = '' AWS_SECRET_ACCESS_KEY = '' |
Sign in to add a comment
This is great. I love this feature.
I did run into one config issue though. I have a bucket; media.longnow.org, and i want to place my django project MEDIA in a directory under that bucket. ie; media.longnow.org/djlongnow. That doesn't currently seem possible with this script. I guess I could rearrange my settings to wrap my MEDIA_ROOT in this dir, but it'd be nice to have the functionality right here in this command.