from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='Ascending_Price_Auction', num_demo_participants=None, app_sequence=['Ascending_Price_Auction']), dict(name='Descending_Price_Auction', num_demo_participants=None, app_sequence=['Descending_Price_Auction']), dict(name='First_Price_Auction', num_demo_participants=None, app_sequence=['First_Price_Auction']), dict(name='Second_Price_Auction', num_demo_participants=None, app_sequence=['Second_Price_Auction'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [dict(name='Room_1', display_name='Room 1'), dict(name='Room_2', display_name='Room 2'), dict(name='Room_3', display_name='Room 3'), dict(name='Room_4', display_name='Room 4')] 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']