from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='My_study', num_demo_participants=9, app_sequence=['consent','Selection','Quiz', 'Experiment','PostQuiz'], show_choice=True, real_world_currency_per_point = 0.04, completionlink = 'https://app.prolific.com/submissions/complete?cc=CLT99N63', )] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['consent','is_manager', 'is_dropout','history', 'wait_page_arrival', 'is_high_dimra','treatment','finished'] SESSION_FIELDS = [] ROOMS = [dict(name='firm_team', display_name='firm_team', #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']