from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.1, participation_fee=1, mturk_hit_settings=dict(title='Wildlife Poaching Game', description='Play a fun game and earn some $$$. You will spend about 20 minutes playing a wildlife poaching game as the poacher. Your final payment will be a fixed payment of $1 plus a bonus. Your bonus depends on your performance in the game and can be as high as $5!', keywords='behavioral experiment, interactive game', frame_height=500, minutes_allotted_per_assignment=60, expiration_hours=168, grant_qualification_id='3JFN40I01X6G7R7TPQ37X0HH7T7BMY', qualification_requirements=[{'QualificationTypeId': '000000000000000000L0', 'Comparator': 'GreaterThan', 'IntegerValues': [95]}, {'QualificationTypeId': '3JFN40I01X6G7R7TPQ37X0HH7T7BMY', 'Comparator': 'DoesNotExist'}], template='global/mturk_template.html')) SESSION_CONFIGS = [dict(name='wildlife_poaching_game', num_demo_participants=None, app_sequence=['training', 'game1', 'game2', 'survey'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' ROOMS = [dict(name='my_room', display_name='my_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']