from os import environ SESSION_CONFIGS = [ dict( name='Munro_Nashuha', display_name = "Indonesian Financial and Risk Behaviour", app_sequence=[ 'a_survey', 'b1_bret_trial', 'b2_bret_game', 'c1_bret_otai_trial', 'c2_bret_otai_game', 'd1_bret_otai_lucky_trial', 'd2_bret_otai_lucky', 'e1_coin_nash_trial', 'e2_coin_nash', 'f_Post_Game_Survey', 'g_ending'], num_demo_participants=5, language='id', variant='stopstart', extra_boxes=5, ), ] # 'a_survey', 'b1_bret_trial', 'b2_bret_game', 'c1_bret_otai_trial', 'c2_bret_otai_game', 'd1_bret_otai_lucky_trial', # 'd2_bret_otai_lucky', 'e1_coin_nash_trial', 'e2_coin_nash', 'f_Post_Game_Survey', 'g_ending' # if you set a property in SESSION_CONFIG_DEFAULTS, it will be inherited by all configs # in SESSION_CONFIGS, except those that explicitly override it. # the session config can be accessed from methods in your apps as self.session.config, # e.g. self.session.config['participation_fee'] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="" ) PARTICIPANT_FIELDS = [] SESSION_FIELDS = [] # ISO-639 code # for example: de, fr, ja, ko, zh-hans LANGUAGE_CODE = 'en' # e.g. EUR, GBP, CNY, JPY REAL_WORLD_CURRENCY_CODE = 'IDR' USE_POINTS = False THOUSAND_SEPARATOR = '.' ROOMS = [ dict( name='Munro_Nashuha_Gerald', display_name='Indonesian Risk Preference', participant_label_file='_rooms/econ101.txt', ), dict(name='live_demo', display_name='Room for live demo (no participant labels)'), ] ADMIN_USERNAME = 'Nashuha' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'YuliRosdiyanti211099' DEMO_PAGE_INTRO_HTML = """ Indonesian Risk Preference Experiment """ SECRET_KEY = '2110199909071997' INSTALLED_APPS = ['otree']