from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=10) SESSION_CONFIGS = [dict(name='main_give_4', num_demo_participants=6, app_sequence=['instruction', 'practice', 'main', 'payment'], treatment=1), dict(name='main_give_8', num_demo_participants=6, app_sequence=['instruction', 'practice', 'main', 'payment'], treatment=2), dict(name='main_take_4', num_demo_participants=None, app_sequence=['instruction_take', 'practice_take', 'main_take', 'payment'], treatment=1), dict(name='main_take_8', num_demo_participants=None, app_sequence=['instruction_take', 'practice_take', 'main_take', 'payment'], treatment=2)] LANGUAGE_CODE = 'ko' REAL_WORLD_CURRENCY_CODE = 'KRW' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' PARTICIPANT_FIELDS = [] SESSION_FIELDS = ['payround'] REAL_WORLD_CURRENCY_DECIMAL_PLACES = 0 ROOMS = [dict(name='room1', display_name='room1', participant_label_file='_rooms/room1.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']