from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='SessionBA', num_demo_participants=None, app_sequence=['Instructions', 'BA', 'ComprehensionBA', 'IdentificationBA', 'Questionnaire']), dict(name='SessionSTD', num_demo_participants=None, app_sequence=['Instructions', 'STD', 'ComprehensionSTD', 'IdentificationSTD', 'Questionnaire'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['IdentificationBA_Payoff', 'IdentificationSTD_Payoff', 'Comprehension_Payoff'] SESSION_FIELDS = [] ROOMS = [dict(name='BA', display_name='BA', participant_label_file='_rooms/BA.txt'), dict(name='STD', display_name='STD', participant_label_file='_rooms/STD.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']