from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=1, mturk_hit_settings=dict(title='Trust Experiment', description='A short trust experiment', keywords='bonus, study', frame_height=500, minutes_allotted_per_assignment=60, expiration_hours=168, grant_qualification_id='', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='AllLevels', num_demo_participants=20, app_sequence=['transparency_game'], real_world_currency_per_point=0.01), dict(name='NoTransparencySession', num_demo_participants=20, app_sequence=['eiqudlaf'], real_world_currency_per_point=0.01), dict(name='LowTransparencySession', num_demo_participants=20, app_sequence=['qurielsk'], real_world_currency_per_point=0.01), dict(name='MediumTransparencySession', num_demo_participants=20, app_sequence=['transparency_game'], real_world_currency_per_point=0.01), dict(name='HighTransparencySession', num_demo_participants=20, app_sequence=['mdnsleids'], real_world_currency_per_point=0.01)] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] 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']