From: bobcall Date: Thu, 31 Oct 2013 12:14:05 +0000 (-0400) Subject: moved static_s3.py from SRC_ROOT/confs/prod to karmaworld/secret X-Git-Tag: release-20150131~386^2~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=05bf7c084233f20a25fd5f1b1e5552f27d3c583c;p=oweals%2Fkarmaworld.git moved static_s3.py from SRC_ROOT/confs/prod to karmaworld/secret --- diff --git a/confs/prod/static_s3.py b/confs/prod/static_s3.py deleted file mode 100644 index cb7cb20..0000000 --- a/confs/prod/static_s3.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python -# -*- coding:utf8 -*- -# Copyright (C) 2012 FinalsClub Foundation -""" Dummy S3 bucket conf. file (for pushing static files """ - -DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' -AWS_ACCESS_KEY_ID = 'access_id' -AWS_SECRET_ACCESS_KEY = 'access_key' -AWS_STORAGE_BUCKET_NAME = 'bucket' -S3_URL = 'http://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME -STATIC_URL = S3_URL diff --git a/karmaworld/secret/static_s3.py b/karmaworld/secret/static_s3.py new file mode 100644 index 0000000..cb7cb20 --- /dev/null +++ b/karmaworld/secret/static_s3.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# -*- coding:utf8 -*- +# Copyright (C) 2012 FinalsClub Foundation +""" Dummy S3 bucket conf. file (for pushing static files """ + +DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' +AWS_ACCESS_KEY_ID = 'access_id' +AWS_SECRET_ACCESS_KEY = 'access_key' +AWS_STORAGE_BUCKET_NAME = 'bucket' +S3_URL = 'http://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME +STATIC_URL = S3_URL