from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='constant_price', num_demo_participants=None,base=1, app_sequence=['foodloss_practice', 'foodloss']), dict(name='constant_price2', num_demo_participants=None,base=1, app_sequence=[ 'foodloss']), dict(name='dynamic_price', num_demo_participants=None,base=0, app_sequence=['foodloss_practice', 'foodloss'])] LANGUAGE_CODE = 'ja' REAL_WORLD_CURRENCY_CODE = 'JPY' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] REAL_WORLD_CURRENCY_DECIMAL_PLACES = 0 ROOMS = [dict( name='room1', display_name='constant', participant_label_file='_rooms/constant.txt', ), dict( name='room2', display_name='dynamic', participant_label_file='_rooms/dynamic.txt', )] 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']