from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.0333, participation_fee=2, mturk_hit_settings=dict(title='Group Decision Making', description='This is a study about group decision making from Lancaster University(UK). You will get $2 as a participation fee. The maximum bonus payment you can get is $8.', keywords='bonus, study, common project, group decision making.', frame_height=600, minutes_allotted_per_assignment=70, expiration_hours=0.32, grant_qualification_id='3XDG4EZRX87VPG8CCLMRR1KRJ56TPY', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}, {'QualificationTypeId': '3XDG4EZRX87VPG8CCLMRR1KRJ56TPY', 'Comparator': 'DoesNotExist'}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='T1Session1', num_demo_participants=None, app_sequence=['Treatment1'], use_browser_bots=False), dict(name='T2Session2', num_demo_participants=None, app_sequence=['Treatment2'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' ROOMS = [] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']