from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='IsraelCourtPerception', num_demo_participants=20, app_sequence=['survey_court_perception','reform','pigeonhole','profile','thanks']), dict(name='IsraelCourtProspective', num_demo_participants=20, app_sequence=['survey_supreme_prospective', 'reform', 'pigeonhole','profile','thanks']), dict(name='Profile_only', num_demo_participants=20, app_sequence=['profile','thanks']), dict(name='pigeonhole', num_demo_participants=20, app_sequence=['pigeonhole','thanks']), dict(name='IsraelCourtCombined', num_demo_participants=20, app_sequence=['survey_court_perception','survey_supreme_prospective', 'reform', 'pigeonhole','profile','thanks']), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] OTREE_PRODUCTION=True 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'] ROOMS = [ dict( name='room_percept', display_name='Perception Room' ), dict( name='room_prospect', display_name='Prospective Room' ), dict( name='room_combinded', display_name='randomized app' ), dict( name='room_cpg', display_name='cpg Lab' ), ]