-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_settings.py
92 lines (74 loc) · 2.37 KB
/
test_settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"""
These settings are here to use during tests, because django requires them.
In a real-world use case, apps in this project are installed into other
Django applications, so these settings will not be used.
"""
from os.path import abspath, dirname, join
def root(*args):
"""
Get the absolute path of the given path relative to the project root.
"""
return join(abspath(dirname(__file__)), *args)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'default.db',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.messages',
'django.contrib.sessions',
'learning_assistant',
)
LOCALE_PATHS = [
root('learning_assistant', 'conf', 'locale'),
]
ROOT_URLCONF = 'learning_assistant.urls'
SECRET_KEY = 'insecure-secret-key'
MIDDLEWARE = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
TEMPLATES = [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': False,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth', # this is required for admin
'django.contrib.messages.context_processors.messages', # this is required for admin
],
},
}]
CHAT_COMPLETION_API = 'https://test.edx.org/'
CHAT_COMPLETION_API_KEY = 'endpoint_key'
CHAT_COMPLETION_API_CONNECT_TIMEOUT = 0.5
CHAT_COMPLETION_API_READ_TIMEOUT = 10
DISCOVERY_BASE_URL = 'http://edx.devstack.discovery:18381'
DISCOVERY_BACKEND_SERVICE_EDX_OAUTH2_PROVIDER_URL = 'http://edx.devstack.lms:18000/oauth2'
DISCOVERY_BACKEND_SERVICE_EDX_OAUTH2_KEY = 'discovery-backend-service-key'
DISCOVERY_BACKEND_SERVICE_EDX_OAUTH2_SECRET = 'discovery-backend-service-secret'
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
}
}
LEARNING_ASSISTANT_PROMPT_TEMPLATE = (
"This is a prompt. {% if unit_content %}"
"The following text is useful."
"\""
"{{ unit_content }}"
"\""
"{% endif %}"
"{{ skill_names }}"
"{{ title }}"
)
LEARNING_ASSISTANT_AVAILABLE = True
LEARNING_ASSISTANT_AUDIT_TRIAL_LENGTH_DAYS = 14