from os import environ SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=0.01, participation_fee=0, mturk_hit_settings=dict( title='Make decision as a fund manager', description='Description for your 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='session1', num_demo_participants=2, app_sequence=['Instructions', 'Quiz', 'Decisions'], ) ] 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']