Commit 573d3c89 by Stephen Sanchez

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

parent 115d8c64
...@@ -605,6 +605,7 @@ OPTIONAL_APPS = ( ...@@ -605,6 +605,7 @@ OPTIONAL_APPS = (
'submissions', 'submissions',
'openassessment', 'openassessment',
'openassessment.assessment', 'openassessment.assessment',
'openassessment.fileupload',
'openassessment.workflow', 'openassessment.workflow',
'openassessment.xblock' 'openassessment.xblock'
) )
......
...@@ -312,6 +312,9 @@ if AWS_SECRET_ACCESS_KEY == "": ...@@ -312,6 +312,9 @@ if AWS_SECRET_ACCESS_KEY == "":
AWS_STORAGE_BUCKET_NAME = AUTH_TOKENS.get('AWS_STORAGE_BUCKET_NAME', 'edxuploads') 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 # 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 # function in util/query.py, which is useful for very large database reads
DATABASES = AUTH_TOKENS['DATABASES'] DATABASES = AUTH_TOKENS['DATABASES']
......
...@@ -1602,6 +1602,7 @@ OPTIONAL_APPS = ( ...@@ -1602,6 +1602,7 @@ OPTIONAL_APPS = (
'submissions', 'submissions',
'openassessment', 'openassessment',
'openassessment.assessment', 'openassessment.assessment',
'openassessment.fileupload',
'openassessment.workflow', 'openassessment.workflow',
'openassessment.xblock' 'openassessment.xblock'
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment