from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='part1_y', num_demo_participants=None, app_sequence=['survey_before_spanish_1', 'roll_y_span']), dict(name='part1_s', num_demo_participants=None, app_sequence=['survey_before_spanish_1', 'roll_s_span']), dict(name='part2_y', num_demo_participants=None, app_sequence=['survey_before_spanish_2', 'roll_y_span2']), dict(name='part2_s', num_demo_participants=None, app_sequence=['survey_before_spanish_2', 'roll_s_span2']), dict(name='part1_chi_exp', num_demo_participants=None, app_sequence=['survey_before_exp', 'roll_c_exp']), dict(name='part1_eng_exp', num_demo_participants=None, app_sequence=['survey_before_exp', 'roll_y_exp']), dict(name='part2_chi_exp', num_demo_participants=None, app_sequence=['survey_before2', 'roll_c_exp2']), dict(name='part2_eng_exp', num_demo_participants=None, app_sequence=['survey_before2', 'roll_y_exp2'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False 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']