from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.12, participation_fee=1) SESSION_CONFIGS = [dict(name='P3_all', num_demo_participants=None, app_sequence=['P3_consent', 'P3_initialstage', 'P3_mainstage12', 'P3_postsurvey'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'GBP' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['time_outs', 'bribes', 'role', 'order_firm_condition', 'order_official_condition', 'payment', 'finished', 'order_official_corrupt_norm', 'order_official_ambiguity', 'order_official_probability', 'ambiguities', 'probabilities'] SESSION_FIELDS = ['prolific_completion_url'] ROOMS = [dict(name='waiting_room', display_name='Waiting 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']