from os import environ SESSION_CONFIGS = [ dict( name='my_simple_survey', num_demo_participants=3, app_sequence=['my_simple_survey'] ), ] # SESSION_CONFIGS = [ # dict( # name='public_goods', # app_sequence=['public_goods'], # num_demo_participants=3, # ), # 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'] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True SECRET_KEY = '9759682133565' INSTALLED_APPS = ['otree'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="" )