from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0.1, mturk_hit_settings=dict(title='A short task about decision making', description='Bonus payment up to $2.2 (Avg. $1) will be provided upon completion. It takes about 5-10 minutes.', keywords='bonus, study', frame_height=500, minutes_allotted_per_assignment=10, expiration_hours=24, grant_qualification_id='3MCN1A5LKQ140FPLVWMWLP4TQ4ZPK9', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}, {'QualificationTypeId': '3MCN1A5LKQ140FPLVWMWLP4TQ4ZPK9', 'Comparator': 'DoesNotExist'}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='my_session', num_demo_participants=None, app_sequence=['blank_app', 'blank_app2'], Treatment=0, Treatment2=0)] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' 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']