from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.01, participation_fee=1, mturk_hit_settings=dict(title='Decision Making in an Economic Task (~ 10 Minutes)', description='Play an Economic Game with a Partner (~ 10 Minutes), bonus earnings during the game based on your decisions.', keywords='bonus, study', frame_height=500, minutes_allotted_per_assignment=20, expiration_hours=12, grant_qualification_id='', qualification_requirements=[{'QualificationTypeId': '32ORRPQA78JUV93J9KN33HEAJAX8DZ', 'Comparator': 'DoesNotExist'}, {'QualificationTypeId': '00000000000000000071', 'Comparator': 'EqualTo', 'LocaleValues': [{'Country': 'US'}]}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='my_session', num_demo_participants=2, app_sequence=['prisoner', 'Skiptoend'], use_browser_bots=False, AWS_ACCESS_KEY_ID='AKIAJOFIL5ICCD7LFHVA', AWS_SECRET_ACCESS_KEY='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')] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True 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']