from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.05, participation_fee=0) SESSION_CONFIGS = [dict(name='UK_EIBFFC', num_demo_participants=None, app_sequence=['Prolific_Consent_form', 'Auction_All_Play', 'End_Study'], completionlink='https://app.prolific.com/submissions/complete?cc=C84X468W')] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'GBP' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [dict(name='Room_1', display_name='Waiting Room 1'), dict(name='Room_2', display_name='Waiting Room 2'), dict(name='Room_3', display_name='Waiting Room 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']