from os import environ SESSION_CONFIGS = [ dict( name='FUNI_II', app_sequence=[ 'P0_Instructions', 'P1_TPGG', 'P2_RE_Task', 'P3_Shock', 'P4_Option_A', 'P4_Option_B', 'P5_End' ], num_demo_participants=8, ), ] # 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, participation_fee=5.00, doc="" ) PARTICIPANT_FIELDS = ['language', 'communication', 'task_type', 'points_p1', 'group_connection_initial', 'points_p2', 'points_p3', 'help_received_p3', 'help_given_p3', 'points_p4_A', 'points_p4_B', ] SESSION_FIELDS = [] # ISO-639 code # for example: de, fr, ja, ko, zh-hans LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True ROOMS = [ dict( name='room1', display_name='Room 1', participant_label_file='_rooms/room1/id_list_r1.txt', ), ] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = "19_18_FUNI" DEMO_PAGE_INTRO_HTML = """ """ SECRET_KEY = '7032668988181'