-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
217 lines (180 loc) · 7.35 KB
/
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import os
from os import environ
import dj_database_url
from boto.mturk import qualification
import otree.settings
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
#STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
#STATIC_URL = '/static/'
# Extra places for collectstatic to find static files.
#STATICFILES_DIRS = (
# os.path.join(BASE_DIR, 'static'),
#)
# the environment variable OTREE_PRODUCTION controls whether Django runs in
# DEBUG mode. If OTREE_PRODUCTION==1, then DEBUG=False
if environ.get('OTREE_PRODUCTION') not in {None, '', '0'}:
DEBUG = False
else:
DEBUG = True
if environ.get('SPLIT_CHATS') not in {True, '1'}:
SPLIT = False
else:
SPLIT = True
# don't share this with anybody.
SECRET_KEY = '62qe!ca719!_t#xhlo-^)x%o^748x5o^zub@7+znt)7ivpfp7k'
DATABASES = {
'default': dj_database_url.config(
# Rather than hardcoding the DB parameters here,
# it's recommended to set the DATABASE_URL environment variable.
# This will allow you to use SQLite locally, and postgres/mysql
# on the server
# Examples:
# export DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME
# export DATABASE_URL=mysql://USER:PASSWORD@HOST:PORT/NAME
# fall back to SQLite if the DATABASE_URL env var is missing
default='sqlite:///' + os.path.join(BASE_DIR, 'db.sqlite3')
)
}
# AUTH_LEVEL:
# this setting controls which parts of your site are freely accessible,
# and which are password protected:
# - If it's not set (the default), then the whole site is freely accessible.
# - If you are launching a study and want visitors to only be able to
# play your app if you provided them with a start link, set it to STUDY.
# - If you would like to put your site online in public demo mode where
# anybody can play a demo version of your game, but not access the rest
# of the admin interface, set it to DEMO.
# for flexibility, you can set it in the environment variable OTREE_AUTH_LEVEL
AUTH_LEVEL = environ.get('OTREE_AUTH_LEVEL')
ADMIN_USERNAME = 'admin'
# for security, best to set admin password in an environment variable
ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD')
CHANNEL_ROUTING = 'transcription.routing.channel_routing'
# setting for integration with AWS Mturk
AWS_ACCESS_KEY_ID = environ.get('AWS_ACCESS_KEY_ID')
AWS_SECRET_ACCESS_KEY = environ.get('AWS_SECRET_ACCESS_KEY')
# e.g. EUR, CAD, GBP, CHF, CNY, JPY
REAL_WORLD_CURRENCY_CODE = 'USD'
USE_POINTS = False
# e.g. en, de, fr, it, ja, zh-hans
# see: https://docs.djangoproject.com/en/1.9/topics/i18n/#term-language-code
LANGUAGE_CODE = 'en'
# if an app is included in SESSION_CONFIGS, you don't need to list it here
INSTALLED_APPS = ['otree',]
# SENTRY_DSN = ''
DEMO_PAGE_INTRO_TEXT = """
<p>
This is the control panel for all of the oTree games issued by Zoë and Bobby.
</p>
"""
ROOMS = [
{
'name': 'transcription_room',
'display_name': 'Transcription Room',
'participant_label_file': '_rooms/trans.txt',
}
]
# from here on are qualifications requirements for workers
# see description for requirements on Amazon Mechanical Turk website:
# http://docs.aws.amazon.com/AWSMechTurk/latest/AWSMturkAPI/ApiReference_QualificationRequirementDataStructureArticle.html
# and also in docs for boto:
# https://boto.readthedocs.org/en/latest/ref/mturk.html?highlight=mturk#module-boto.mturk.qualification
mturk_hit_settings = {
'keywords': ['bonus', 'negotiation', 'study','survey','data entry', 'data-entry'],
'title': '10-minute survey plus opportunity for additional paid data-entry work',
'description': 'We ask 10 questions in total and present the option to negotiate a clearly-defined data-entry job offer, which will be paid via bonus',
'frame_height': 800,
'preview_template': 'global/MTurkPreview.html',
'minutes_allotted_per_assignment': 48*60,
'expiration_hours': 2, # 7 days
'grant_qualification_id': '3NF07PFA1K2EGWJFNBQ4JN81TXKETV',# to prevent retakes FOR REAL
# 'grant_qualification_id': '3VFIQRXYYK60OWH5USLZQ69Z1BU2ZB', ## sandbox
'qualification_requirements': [
{ # this one
# 'QualificationTypeId': "3VFIQRXYYK60OWH5USLZQ69Z1BU2ZB", # Prevent Repeats SANDBOX
'QualificationTypeId': "3NF07PFA1K2EGWJFNBQ4JN81TXKETV", # Prevent Repeats PRODUCTION
'Comparator': "DoesNotExist",
'ActionsGuarded': "DiscoverPreviewAndAccept"
},
{ # this one
'QualificationTypeId': "00000000000000000071", # Worker_Locale
'Comparator': "EqualTo",
'LocaleValues': [{'Country': "US"}]
},
{
'QualificationTypeId': "000000000000000000L0", # Worker_PercentAssignmentsApproved
'Comparator': "GreaterThan",
'IntegerValues': [90]
},
{ # this one
'QualificationTypeId': "00000000000000000040", # Worker_NumberHitsApproved
'Comparator': "GreaterThanOrEqualTo",
'IntegerValues': [100]
},
# {
# 'QualificationTypeId': "2ARFPLSP75KLA8M8DH1HTEQVJT3SY6", # Masters Sandbox
# 'Comparator': "Exists"
# },
# {
# 'QualificationTypeId': "2F1QJWKUDD8XADTFD2Q0G6UTO95ALH", # Masters Production
# 'Comparator': "Exists"
# },
]
}
## REFERENCE STRUCTURE
#QualificationRequirements=[
# {
# 'QualificationTypeId': 'string',
# 'Comparator': 'LessThan'|'LessThanOrEqualTo'|'GreaterThan'|'GreaterThanOrEqualTo'|'EqualTo'|'NotEqualTo'|'Exists'|'DoesNotExist'|'In'|'NotIn',
# 'IntegerValues': [
# 123,
# ],
# 'LocaleValues': [
# {
# 'Country': 'string',
# 'Subdivision': 'string'
# },
# ],
# 'RequiredToPreview': True|False,
# 'ActionsGuarded': 'Accept'|'PreviewAndAccept'|'DiscoverPreviewAndAccept'
# },
# ],
# if you set a property in SESSION_CONFIG_DEFAULTS, it will be inherited by all configs
# in SESSION_CONFIGS, except those that explicitly override it.
# the session config can be accessed from methods in your apps as self.session.config,
# e.g. self.session.config['participation_fee']
SESSION_CONFIG_DEFAULTS = {
'real_world_currency_per_point': 0.00,
'participation_fee': 1.00,
'doc': "",
'mturk_hit_settings': mturk_hit_settings,
}
SESSION_CONFIGS = [
{
'name': 'transcription_survey',
'display_name': "Entire Flow",
'num_demo_participants': 4,
'app_sequence': ['trx_survey','transcription'],
# 'use_browser_bots': True,
},
{
'name': 'transcription',
'display_name': "Start at Transcription",
'num_demo_participants': 4,
'app_sequence': ['transcription'],
# 'use_browser_bots': True,
},
{
'name': 'exit_survey',
'display_name': "Just the Exit Survey",
'num_demo_participants': 1,
'app_sequence': ['exit_survey'],
# 'use_browser_bots': True,
},
]
SENTRY_DSN = 'http://52dc63bdd6d54a8f88a5cfa8466abab6:dc115bfc45e345089428f88fda13e2ae@sentry.otree.org/157'
# anything you put after the below line will override
# oTree's default settings. Use with caution.
otree.settings.augment_settings(globals())