from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=12, mturk_hit_settings=dict(title='Title for your experiment', 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='study_ambiguity_choice', num_demo_participants=4, app_sequence=['welcome', 'ambiguity_task_1', 'choice_task_1', 'survey', 'ambiguity_task_2', 'choice_task_2', 'financial_literacy_1', 'financial_literacy_2', 'end'], display_name='Ambiguity / Choice Study' ) ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['agreement', 'first_task', 'second_task', 'trust_first', 'graphs', 'task_to_pay', 'ambiguity_round_to_pay', 'ambiguity_decision_to_pay', 'ambiguity_draw'] SESSION_FIELDS = [] ROOMS = [dict( name='sorbonne_behavioral_lab', display_name='Sorbonne Behavioral Lab', participant_label_file='_rooms/trust.txt', use_secure_urls=True ), ] 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']