from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0.01, mturk_hit_settings=dict(title='SST Simulation Game (earn up to $2 in 15 minutes)', description='Simulation Game', keywords='bonus, study, game, experiment, simulation', frame_height=500, minutes_allotted_per_assignment=40, expiration_hours=168, grant_qualification_id='3KED7M8JT1F8AWM0JXUVH8E02DLF6W', qualification_requirements=[{'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}, {'QualificationTypeId': '00000000000000000040', 'Comparator': 'GreaterThan', 'IntegerValues': [100]}, {'QualificationTypeId': '000000000000000000L0', 'Comparator': 'GreaterThan', 'IntegerValues': [90]}, {'QualificationTypeId': '3KED7M8JT1F8AWM0JXUVH8E02DLF6W', 'Comparator': 'DoesNotExist'}, {'QualificationTypeId': '3OP1ZISFBGSXD1NTEZOZP90BAUCI17', 'Comparator': 'DoesNotExist'}, {'QualificationTypeId': '00000000000000000060', 'Comparator': 'EqualTo', 'IntegerValues': [1]}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='checkout_session', num_demo_participants=None, app_sequence=['Checkout'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [dict(name='my_room', display_name='my_room', participant_label_file='_rooms/my_room.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']