from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='Labour_Decisions_Beta', num_demo_participants=None, app_sequence=['Labour_Decisions_Beta']), dict(name='Labour_Decisions_progflatMTR0410', num_demo_participants=None, app_sequence=['Labour_Decisions_progflatMTR0410'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'CAD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] THOUSAND_SEPARATOR = '' AUTO_TABULATE_PAYOFFS = True ROOMS = [dict(name='my_room', display_name='my_room', participant_label_file='_static/global/my_room.txt')] AUTH_LEVEL = 'STUDY' ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'lihsin' SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']