from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point= 0.01, participation_fee=1.5) SESSION_CONFIGS = [ dict(name='bandit', num_demo_participants=None, app_sequence=['consent','example','block1','block2'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['choice', 'round','setSize','scale','finished','allMus', 'options_mu'] SESSION_FIELDS = [] ROOMS = [] 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']