from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='Leverage_choice', num_demo_participants=1, app_sequence=['WorkerID', 'Intro', 'Control_variables', 'Introducing_questions', 'Explanations', 'Comprehension', 'Treatments_intro', 'bettingbeta', 'Endline_survey', 'Thanks'])] #SESSION_CONFIGS = [dict(name='Leverage_choice', num_demo_participants=None, app_sequence=['WorkerID', 'Intro', 'Control_variables', 'Introducing_questions', 'Explanations', 'Comprehension', 'Treatments_intro', 'bettingbeta', 'Thanks'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = ['stock_selected', 'stock_selected_image', 't_payoff_value', 't_leverage', 't_stock', 't_random_decision_stock', 't_return_investment'] SESSION_FIELDS = [] ROOMS = [] ADMIN_USERNAME = 'FinancePaderborn' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'RicoLeverage2022!' SECRET_KEY = 'blahblah' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']