from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='Session_1', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S_partial_info14Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='Session_2', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S_partial_info15Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='Session_3', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_INFO_B_and_S12Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_INFO_B_AND_S']), dict(name='Session_4', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S_partial_info12Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='Session_5', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S_partial_info12Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='Session_6', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_INFO_B_and_S12Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_INFO_B_AND_S']), dict(name='Session_7', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_INFO_B_and_S13Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_INFO_B_AND_S']), dict(name='Session_8', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S_partial_info14Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='Session_9', num_demo_participants=None, app_sequence=['WelcomLAB', 'BG_B_and_S', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BG', 'Payments_B_AND_S']), dict(name='PilotaFrancescaPEndo', num_demo_participants=None, app_sequence=['WelcomLABRebel', 'BG_INFO_B_and_S12Rounds', 'distribution_game', 'CRT', 'IRI', 'QuestionarioFinale_BGReggio', 'Payments_INFO_B_AND_S'])] LANGUAGE_CODE = 'it' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] ROOMS = [] 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']