from os import environ SESSION_CONFIGS = [ dict( name='Study_online', app_sequence=['Instructions', 'Part1a_Instructions','Part1a_Tutorial','Part1a', 'Part1b_Instructions','Part1b_Tutorial','Part1b', 'Part2a_Instructions','Part2a_Tutorial','Part2a', 'Part2b_Instructions','Part2b_Tutorial','Part2b', 'Part3_Instructions','Part3a','Part3b', 'Survey'], num_demo_participants=1, ), ] ROOMS = [ dict( name='Session1', display_name='Session1', # participant_label_file='_rooms/your_study.txt', # use_secure_urls=True, ), dict( name='Session2', display_name='Session2', # participant_label_file='_rooms/your_study.txt', # use_secure_urls=True, ), dict( name='Session3', display_name='Session3', # participant_label_file='_rooms/your_study.txt', # use_secure_urls=True, ), dict( name='Session4', display_name='Session4', # participant_label_file='_rooms/your_study.txt', # use_secure_urls=True, ), ] # 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=3.00, doc="" ) PARTICIPANT_FIELDS = ['finished'] 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 = False ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'IchwillDaten42' DEMO_PAGE_INTRO_HTML = """ """ SECRET_KEY = '7910655393606' EXTENSION_APPS = [..., 'captcha', ] RECAPTCHA_SITE_KEY = "6LfbMRQrAAAAACB8mEE9eOR-TGcOYG1naoUxhUtp" RECAPTCHA_SECRET_KEY = "6LfbMRQrAAAAAG4FVTAv1_1c17tjuINIUZej98qB"