from os import environ SESSION_CONFIGS = [ dict( name='reciprocity_task', display_name='4-Agent', app_sequence=['consent_form', 'four_agent_practice', 'input_page','four_agent'], num_demo_participants=20, ) ] # if you set a property in SESSION_CONFIG_DEFAULTS, it will be inherited by all configs # in SESSION_CONFIGS, except those that explicitly override it. # the session config can be accessed from methods in your apps as self.session.config, # e.g. self.session.config['participation_fee'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00/240, participation_fee=10.00, doc="" ) PARTICIPANT_FIELDS = ['payout_round','total_payout','image_seq','is_dropout','condition_seq','player_no_list','arrival_at_waiting','is_initialized','no_switched','finished'] SESSION_FIELDS = ['prolific_completion_url'] # ISO-639 code # for example: de, fr, ja, ko, zh-hans LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = 'CNY' USE_POINTS = True ROOMS = [ dict(name='live_room', display_name='Social Interaction Study Room'), ] ADMIN_USERNAME = 'huagen wang' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = '316417' DEMO_PAGE_INTRO_HTML = """ Here are some oTree games. """ SECRET_KEY = '1820517306969' INSTALLED_APPS = ['otree']