from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict (name='Treatment', num_demo_participants=None, app_sequence=['consent','Selection', 'Quiz', 'Experiment', 'PostQuiz'], show_choice=True, real_world_currency_per_point=0.05, completionlink= 'https://app.prolific.com/submissions/complete?cc=C11IHMLV', ), dict (name='Control', num_demo_participants=None, app_sequence=['consent','Selection', 'Quiz', 'Experiment', 'PostQuiz'], show_choice=False, real_world_currency_per_point=0.05, completionlink= 'https://app.prolific.com/submissions/complete?cc=C11IHMLV', ), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['is_high_dimra','consent','finished'] SESSION_FIELDS = [] ROOMS = [dict (name='Interaction_in_Teams', display_name='Employees_and_Firm', #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']