from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.001, participation_fee=2) SESSION_CONFIGS = [dict(name='AI_Consultant_session_Measured', num_demo_participants=2, app_sequence=['Introduction', 'AI_Consultant_Measured'], participation_fee=2.00, real_world_currency_per_point=0.001, completionlink = 'https://app.prolific.com/submissions/complete?cc=COKDS77O'),dict(name='Human_Consultant_session_Measured', num_demo_participants=4, app_sequence=['Introduction', 'Human_BeforeChat_Measured','Human_Consultant_Measured'],participation_fee=2.00, real_world_currency_per_point=0.001, completionlink = 'https://app.prolific.com/submissions/complete?cc=COKDS77O')] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' POINTS_CUSTOM_NAME = 'dimra' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['prolific_pid', 'prolific_study_id', 'prolific_session_id','assigned_role','roleframe'] SESSION_FIELDS = [] ROOMS = [dict( name='Budget_AIhigh', display_name='Budget_reporting', # participant_label_file='_rooms/your_study.txt', # use_secure_urls=True, ), dict( name='Budget_Humanhigh', display_name='Budget_reporting', # participant_label_file='_rooms/your_study.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']