from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.1, participation_fee=5) SESSION_CONFIGS = [dict(name='test_survery', num_demo_participants=2, app_sequence=['test_survey'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'CNY' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' ROOMS = [dict(name='my_room', display_name='my_room')] 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']