from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=3, mturk_hit_settings = dict( keywords='bonus, study, university, research, game, high', title='Academic Experiment with up to $12 bonus', description='Includes bonus with potential total reward of $15. Should take around 20 - 40 minutes. Consiststs of 6 rounds. Each round has a chatbox where you can chat with your counterpart as well as 1 or 2 multiple choice/slider select questions. There are also 2 slider questions at the beginning and 4 demographic questions at the end.', frame_height=500, template='global/mturk_template.html', minutes_allotted_per_assignment=75, expiration_hours=2, qualification_requirements=[ { 'QualificationTypeId': "00000000000000000071", 'Comparator': "EqualTo", 'LocaleValues': [{'Country': "US"}] }, { 'QualificationTypeId': "00000000000000000040", 'Comparator': "GreaterThanOrEqualTo", 'IntegerValues': [101] }, { 'QualificationTypeId': "000000000000000000L0", 'Comparator': "GreaterThanOrEqualTo", 'IntegerValues': [99] } ] ) ) SESSION_CONFIGS = [dict(name='session1', num_demo_participants=20, app_sequence=['introduction_app', 'App1', 'demographics_app'])] 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 = 'blahblah' SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']