from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.01, participation_fee=1, mturk_hit_settings=dict(title='A 30-minute task up to $6 bonus', description='Description for your experiment', keywords='bonus, study', frame_height=500, minutes_allotted_per_assignment=90, expiration_hours=168, grant_qualification_id='', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}, {'QualificationTypeId': '3WPAZNO3THRMTD1RIAJHIYRB46HQAT', 'Comparator': 'DoesNotExist'}, {'QualificationTypeId': '000000000000000000L0', 'Comparator': 'GreaterThanOrEqualTo', 'IntegerValues': [95]}, {'QualificationTypeId': '00000000000000000040', 'Comparator': 'GreaterThanOrEqualTo', 'IntegerValues': [100]}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='session_linear', num_demo_participants=2, app_sequence=['Instructions_linear', 'Quiz_linear', 'Decisions_linear']), dict(name='session_Convexity', num_demo_participants=6, app_sequence=['Instructions_Convexity', 'Quiz_Convexity', 'Decisions_Convexity']), dict(name='session_Concavity', num_demo_participants=6, app_sequence=['Instructions_Concavity', 'Quiz_Concavity', 'Decisions_Concavity'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' ROOMS = [dict(name='Room_Test', display_name='Room_Test')] 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'] #