from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=1, mturk_hit_settings=dict(title='Two Truths and a Lie', description='There are three stories here, one is a lie. Can you figure out which one?', keywords='bonus, study, truth, lie, judgement, game, text', frame_height=500, minutes_allotted_per_assignment=60, expiration_hours=168, grant_qualification_id='', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}, {'QualificationTypeId': '00000000000000000040', 'Comparator': 'GreaterThan', 'IntegerValues': [100]}, {'QualificationTypeId': '000000000000000000L0', 'Comparator': 'GreaterThan', 'IntegerValues': [95]}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='my_session', num_demo_participants=None, app_sequence=['initialize', 'judgement', 'finalize'], use_browser_bots=False)] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [dict(name='judgement_room', display_name='judgement_room')] 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']