AWS S3 files manager
Project description
An AWS S3 Files online manager base on python/django
To use this app follow these steps:
Create your working environment
Install Django
Put the s3filesmanager into INSTALLED_APPS
Install additional dependencies
syncdb and migrate (if you use South)
Install
pip install s3filesmanager
Dependency
django-model-utils
django-bootstrap-toolkit
PIL
sorl-thumbnail
boto
django-storages
INSTALLED_APPS
INSTALLED_APPS = ( ... 'south', 'bootstrap_toolkit', 'sorl.thumbnail', 's3filesmanager', )
Settings
AWS_ACCESS_KEY_ID = 'YOUR_AWS_ACCESS_KEY_ID' AWS_SECRET_ACCESS_KEY = 'YOUR_AWS_SECRET_ACCESS_KEY' DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' AWS_STORAGE_BUCKET_NAME = 'YOUR_AWS_STORAGE_BUCKET_NAME' ASSETS_URL = 'https://BUCKET_NAME.stimuli.s3-website-us-east-1.amazonaws.com' MEDIA_ROOT = ASSETS_URL + 'media/' MEDIA_URL = ASSETS_URL + 'media/' AWS_S3_SECURE_URLS = False AWS_QUERYSTRING_AUTH = False
urls.py
url(r'^', include('s3filesmanager.urls')),
Javascript
The app use some javascript lib for upload files
jQuery
Bootstrap
plupload
Underscore
Sponsor
Sponsored by www.xperiment.mobi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
s3filesmanager-0.5.3.tar.gz
(170.1 kB
view hashes)