16 lines
345 B
Python
16 lines
345 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.apps.VerifyStudentConfig',
|
|
]
|