16 lines
320 B
Python
16 lines
320 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 = 'dev key'
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
|
|
'lms.djangoapps.verify_student',
|
|
)
|