from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0, participation_fee=0) SESSION_CONFIGS = [dict(name='my_session', num_demo_participants=2, completionlink= 'https://app.prolific.com/submissions/complete?cc=C8R4MN2I', #add prolific link here app_sequence=['prisoner', 'ending'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [dict(name='room1', display_name='room1'), dict(name='room2', display_name='room2'), dict(name='room3', display_name='room3'), dict(name='room4', display_name='room4')] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') SECRET_KEY = 'brock' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']