from os import environ # if you set a property in SESSION_CONFIG_DEFAULTS, it will be inherited by all configs # in SESSION_CONFIGS, except those that explicitly override it. # the session config can be accessed from methods in your apps as self.session.config, # e.g. session.config['participation_fee'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=2.000, participation_fee=0.00, doc="" ) OTREE_AUTH_LEVEL = 'STUDY' SESSION_CONFIGS = [ dict( name='GamesOrdenal_Testing', display_name='This is my program GamesOrdenal', num_demo_participants=30, app_sequence=['games_ordenal'], use_browser_bots = True ), dict( name='GamesOrdenal_Testing_nobots', display_name='This is my program GamesOrdenal (no bots)', num_demo_participants=30, app_sequence=['games_ordenal'] ), dict( name='Full_experiment_no_bots', display_name='Full experiment (no bots)', num_demo_participants=30, app_sequence=['onlyinstructions','onlygames','icl','finalquestionnaire'] ), dict( name='Full_experiment_bots', display_name='Full experiment (bots)', num_demo_participants=30, app_sequence=['onlyinstructions','onlygames','icl','finalquestionnaire'], use_browser_bots = True ) ] LANGUAGE_CODE = 'en' POINTS_DECIMAL_PLACES = 2 # REAL_WORLD_CURRENCY_CODE = 'pt' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [ dict( name='econtemas2023', display_name='Temas in Micro 2023' ), dict( name='bse_exp_2023', display_name='BSE Experimental Economics' ), ] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable # ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') ADMIN_PASSWORD = 'upf2023' SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']