convert gdrive.py and secrets to auth against a Google Drive from a Service Account...
[oweals/karmaworld.git] / karmaworld / secret / static_s3.py.example
1 #!/usr/bin/env python
2 # -*- coding:utf8 -*-
3 # Copyright (C) 2012  FinalsClub Foundation
4 """ Dummy S3 bucket conf. file (for pushing static files """
5
6 DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
7 AWS_ACCESS_KEY_ID = 'access_id'
8 AWS_SECRET_ACCESS_KEY = 'access_key'
9 AWS_STORAGE_BUCKET_NAME = 'bucket'
10 S3_URL = 'http://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
11 STATIC_URL = S3_URL