from os import environ SESSION_CONFIGS = [ dict( name='IADC3vs3', display_name="IADC3vs3", num_demo_participants=6, app_sequence=['Leader'], # use_browser_bots=True, ), ] # 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. self.session.config['participation_fee'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="", language='en', select_items='FULL', items_in_random_order=False, scale=1, precision='INTEGERS', matching='RING', slider_init='LEFT', random_payoff='SUM', ) # ISO-639 code # for example: de, fr, ja, ko, zh-hans LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'my_password' DEMO_PAGE_INTRO_HTML = """ """ SECRET_KEY = 'xv!e=oxx8%t2ud4vgt7v$#2wk!d(7)9m(6)&cx^rqnxkmqfkg1' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']