Please note that this is a squshed commit and the work of: Symbolist, macdiesel, nedbat, doctoryes, muzaffaryousaf and muhammad-ammar
16 lines
353 B
Python
16 lines
353 B
Python
"""
|
|
Used when testing with MySQL.
|
|
"""
|
|
from .test import * # pylint: disable=wildcard-import
|
|
from .aws import * # pylint: disable=wildcard-import
|
|
|
|
# Dummy secret key for dev
|
|
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
|
|
'lms.djangoapps.verify_student',
|
|
)
|