from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.01, participation_fee=1) SESSION_CONFIGS = [dict(name='Participant_Pool1', num_demo_participants=None, app_sequence=['ParticipantPool']), dict(name='Participant_Pool2', num_demo_participants=None, app_sequence=['ParticipantPool2']), dict(name='Participant_Pool3', num_demo_participants=None, app_sequence=['ParticipantPool3']), dict(name='BEB_Info', num_demo_participants=None, app_sequence=['Instructions', 'OneShot_PD_BEB_Info', 'Results_BEBInfo'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'GBP' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' ROOMS = [dict(name='my_room', display_name='my_room')] 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']