from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.15, participation_fee=0) SESSION_CONFIGS = [dict(name='full_version', num_demo_participants=5, app_sequence=['instructions', 'quiz', 'survey']), dict(name='quiz_only', num_demo_participants=5, app_sequence=['quiz'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'CNY' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['control'] SESSION_FIELDS = [] ROOMS = [dict(name='mis5003', display_name='MIS5003 Class'), dict(name='onsite', display_name='On-site Recruitment'), dict(name='online', display_name='Online Recruitment')] ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']