# from otree.api import Currency as c, path import os SESSION_CONFIGS = [ dict( name='org_learning', display_name='Organizational Learning Study', num_demo_participants=35, app_sequence=['org_learning'], ), ] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="" ) PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] # ISO-639 code LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = """ Here are some oTree games. """ ADMIN_USERNAME = 'admin' # ADMIN_PASSWORD is set via OTREE_ADMIN_PASSWORD environment variable on Heroku SECRET_KEY = 'your-secret-key' # Follow oTree's convention: # - If OTREE_PRODUCTION is set (e.g. '1'), hide tracebacks. # - If OTREE_PRODUCTION is unset or '0', show tracebacks (useful for debugging). DEBUG = os.environ.get('OTREE_PRODUCTION') in [None, '', '0'] ROOMS = [ dict( name='study', display_name='Study', ), ]