Use local storage instead of S3 for uploads in devstack.

This commit is contained in:
Chris Rossi
2014-05-06 11:41:57 -04:00
parent 2549551e3c
commit 42e8e3068e
2 changed files with 9 additions and 0 deletions

View File

@@ -4,6 +4,10 @@ Specific overrides to the base prod settings to make development easier.
from .aws import * # pylint: disable=wildcard-import, unused-wildcard-import
# Don't use S3 in devstack, fall back to filesystem
del DEFAULT_FILE_STORAGE
MEDIA_ROOT = "/edx/app/edxapp/media"
DEBUG = True
USE_I18N = True
TEMPLATE_DEBUG = DEBUG

View File

@@ -4,6 +4,11 @@ Specific overrides to the base prod settings to make development easier.
from .aws import * # pylint: disable=wildcard-import, unused-wildcard-import
# Don't use S3 in devstack, fall back to filesystem
del DEFAULT_FILE_STORAGE
MEDIA_ROOT = "/edx/app/edxapp/media"
DEBUG = True
USE_I18N = True
TEMPLATE_DEBUG = True