from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0.27, mturk_hit_settings=dict(title='Decision Making experiment', description='In this experiment, you have different options for one decision which offers possible bonus payments. Afterwards, you are asked to answer a few questions. ', keywords='possible bonus, study', frame_height=500, minutes_allotted_per_assignment=10, expiration_hours=1, grant_qualification_id='3FPQIF54GRDBQDOZNY7N1HSW0DKDMS', qualification_requirements=[{'QualificationTypeId': '3FPQIF54GRDBQDOZNY7N1HSW0DKDMS', 'Comparator': 'DoesNotExist'}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='my_session', num_demo_participants=5, app_sequence=['Digital_Economics_Research2'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False 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']