from os import environ SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1/200, # 200 points = $1 participation_fee=7.00, ) SESSION_CONFIGS = [ dict( name='individual_choice', display_name='T1 – Individual Choice', num_demo_participants=9, app_sequence=['individual_choice'], use_browser_bots=False, ), dict( name='group_noinfo', display_name='T2 – Group, No Info', num_demo_participants=9, app_sequence=['group_noinfo'], show_others_ctr=False, use_browser_bots=False, ), dict( name='group_info', display_name='T3 – Group, Center Points Visible', num_demo_participants=9, app_sequence=['group_noinfo'], show_others_ctr=True, use_browser_bots=False, ), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = ['show_others_ctr'] ROOMS = [ dict( name='lab', display_name='Lab', ), ] # OTREE_PRODUCTION = 0 if environ.get('OTREE_PRODUCTION') not in {None, '', '0'}: DEBUG = True else: DEBUG = False ADMIN_USERNAME = 'admin' ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') SECRET_KEY = 'nominate_secret_change_before_deploy' INSTALLED_APPS = ['otree']