from os import environ SESSION_CONFIGS = [ dict( name='dm_experiment', display_name='DM Experiment', app_sequence=['dm_experiment'], num_demo_participants=9, prolific_completion_url='https://app.prolific.com/submissions/complete?cc=C197921G', debug=False, # set to False before going live ), ] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1, participation_fee=1.50, ) PARTICIPANT_FIELDS = [] SESSION_FIELDS = ['condition_counter'] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'GBP' USE_POINTS = False ADMIN_USERNAME = 'admin' ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD', 'admin') SECRET_KEY = '{{ secret_key }}' DEBUG = False