from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='Condicao1LBABCDLB', num_demo_participants=None, app_sequence=['LB1', 'AChat', 'BAudio', 'CVideo', 'DVideoAudio', 'LB2']), dict(name='Condicao2LBACDBLB', num_demo_participants=None, app_sequence=['LB1', 'AChat', 'CVideo', 'DVideoAudio', 'BAudio', 'LB2']), dict(name='CondicaoABAB', num_demo_participants=None, app_sequence=['LBIsoladoABAB1', 'ChatABAB1', 'LBIsoladoABAB2', 'ChatABAB2']), dict(name='CondicaoACAC', num_demo_participants=None, app_sequence=['LBIsoladoACAC1', 'AudioACAC1', 'LBIsoladoACAC2', 'AudioACAC2']), dict(name='CondicaoADAD', num_demo_participants=None, app_sequence=['LBIsoladoADAD1', 'VideoADAD1', 'LBIsoladoADAD2', 'VideoADAD2']), dict(name='CondicaoAEAE', num_demo_participants=None, app_sequence=['LBIsoladoAEAE1', 'VideoAudioAEAE1', 'LBIsoladoAEAE2', 'VideoAudioAEAE2'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'BRL' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' 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']