from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.05, participation_fee=5) SESSION_CONFIGS = [dict(name='Coalition', num_demo_participants=None, app_sequence=['survey', 'game']), dict(name='test_survey', num_demo_participants=None, app_sequence=['survey'], use_browser_bots=True)] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['points', 'role', 'cutoff', 'gender', 'education', 'income', 'R1', 'R2', 'R3', 'G1', 'G2', 'G3', 'I1', 'I2', 'I3', 'E1', 'E2', 'E3'] SESSION_FIELDS = [] ROOMS = [] 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']