from os import environ SESSION_CONFIG_DEFAULTS = [] SESSION_CONFIGS = [dict(name='stb_random_large', num_demo_participants=4, use_browser_bots=False, real_world_currency_per_point=0.1, participation_fee=5, app_sequence=['device_check', 'stb_rdm_intro', 'stb_rdm_tmp', 'stb_rdm_main', 'survey', 'final', 'dq_fail']), dict(name='Debug_interface', num_demo_participants=4, use_browser_bots=False, real_world_currency_per_point=0.1, participation_fee=5, app_sequence=['stb_rdm_tmp', 'stb_rdm_main']), dict(name='Debug_survey', num_demo_participants=4, use_browser_bots=False, real_world_currency_per_point=0.1, participation_fee=5, app_sequence=['survey']), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['is_mobile', 'passed_quiz', # Checks 'uid', 'timed_out', 'mkt_ord_nocap', 'mkt_ord_cap', # App-Specific orders 'finished'] SESSION_FIELDS = ['prolific_completion_url', 'uid_counter', 'recycled_uids'] ROOMS = [ dict( name='islands_exper', display_name='islands_exper', ) ] 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']