from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=.07, participation_fee=5) SESSION_CONFIGS = [ dict(name='session1a_config', num_demo_participants=15, app_sequence=[ 'Session1a_PR', 'Session1a']), dict(name='session1b_config', num_demo_participants=15, app_sequence=[ 'Session1b_PR', 'Session1b']), dict(name='session2a_config', num_demo_participants=15, app_sequence=[ 'Session2a_PR', 'Session2a']), dict(name='session2b_config', num_demo_participants=15, app_sequence=[ 'Session2b_PR', 'Session2b']), dict(name='session3a_config', num_demo_participants=15, app_sequence=[ 'Session3a_PR', 'Session3a']), dict(name='session3b_config', num_demo_participants=15, app_sequence=[ 'Session3b_PR', 'Session3b']), #dict(name='session1_config', num_demo_participants=15, app_sequence=['Session1']), #dict(name='session1b_config', num_demo_participants=15, app_sequence=['Session1b']), #dict(name='session3_config', num_demo_participants=15, app_sequence=['Session3']), #dict(name='session3b_config', num_demo_participants=15, app_sequence=['Session3b']), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [] 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']