Updating settings and requirements for lms and cms to support file upload

This commit is contained in:
Stephen Sanchez
2014-06-27 11:28:11 -04:00
parent 115d8c64f1
commit 573d3c89fc
3 changed files with 5 additions and 0 deletions

View File

@@ -605,6 +605,7 @@ OPTIONAL_APPS = (
'submissions',
'openassessment',
'openassessment.assessment',
'openassessment.fileupload',
'openassessment.workflow',
'openassessment.xblock'
)

View File

@@ -312,6 +312,9 @@ if AWS_SECRET_ACCESS_KEY == "":
AWS_STORAGE_BUCKET_NAME = AUTH_TOKENS.get('AWS_STORAGE_BUCKET_NAME', 'edxuploads')
# Specific setting for the File Upload Service to store media in a bucket.
FILE_UPLOAD_STORAGE_BUCKET_NAME = AUTH_TOKENS.get('AWS_STORAGE_BUCKET_NAME', 'edxuploads')
# If there is a database called 'read_replica', you can use the use_read_replica_if_available
# function in util/query.py, which is useful for very large database reads
DATABASES = AUTH_TOKENS['DATABASES']

View File

@@ -1602,6 +1602,7 @@ OPTIONAL_APPS = (
'submissions',
'openassessment',
'openassessment.assessment',
'openassessment.fileupload',
'openassessment.workflow',
'openassessment.xblock'
)