from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=5) SESSION_CONFIGS = [dict(name='regular_session', num_demo_participants=6, app_sequence=['intro_and_check', 'public_good_kraemer', 'exit_survey'], participation_fee=5), dict(name='intro_test_setup', num_demo_participants=3, app_sequence=['intro_and_check']), dict(name='game_test_setup', num_demo_participants=9, app_sequence=['public_good_kraemer']), dict(name='exit_test_setup', num_demo_participants=None, app_sequence=['exit_survey']), dict(name='regular_session_with_bots', num_demo_participants=15, app_sequence=['intro_and_check', 'public_good_kraemer', 'exit_survey'], use_browser_bots=True), dict(name='IFUA_demo', num_demo_participants=None, app_sequence=['intro_and_check', 'public_good_kraemer', 'exit_survey'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['wait_page_arrival'] SESSION_FIELDS = ['iterator'] ROOMS = [dict(name='dms', display_name='Digital Markets and Strategies A Experiment'), dict(name='test', display_name='Research Lab Pre-Test'), dict(name='dms2', display_name='Digital Markets and Strategies B Experiment')] 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']