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. self.session.config['participation_fee'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="" ) SESSION_CONFIGS = [ dict( name='A1', display_name="A1_firstprice_rv", num_demo_participants=3, app_sequence=['A1'] ), dict( name='A2', display_name="A2_firstprice", num_demo_participants=3, app_sequence=['A2'] ), dict( name='A3', display_name="A3", num_demo_participants=3, app_sequence=['A3'] ), dict( name='A4', display_name="A4_secondprice_rv", num_demo_participants=3, app_sequence=['A4'] ), dict( name='A5', display_name="A5_secondprice", num_demo_participants=3, app_sequence=['A5'] ), ] # ISO-639 code # for example: de, fr, ja, ko, zh-hans LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = '' USE_POINTS = None ROOMS = [{'name': 'fefu', 'display_name': 'FEFU'}] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'admin' DEMO_PAGE_INTRO_HTML = """ """ SECRET_KEY = 'l7hf+4-%2!(762yhac0=a6h&_4v-&e6@+$spx%)p*lykjj)8f$' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree','A1','A2','A3','A4','A5']