from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [ dict( name='T1_Without_Game_Miner', num_demo_participants=None, app_sequence=['T1_Without_Game_Miner'] ), dict( name='T2_With_Game_Miner', num_demo_participants=None, app_sequence=['T2_With_Game_Miner'] ), dict( name='T3_Without_Game_Miner', num_demo_participants=None, app_sequence=['T3_Without_Game_Miner'] ), dict( name='T4_With_Game_Miner', num_demo_participants=None, app_sequence=['T4_With_Game_Miner'] ), dict( name='T5_Without_Game_Miner', num_demo_participants=8, app_sequence=['T5_Without_Game_Miner'] ), dict( name='T6_Without_Game_Miner', num_demo_participants=8, app_sequence=['T6_Without_Game_Miner'] ) ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [ dict( name='group1', display_name='Group 1', ), dict( name='group2', display_name='Group 2', ), dict( name='group3', display_name='Group 3', ), ] 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']