from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='fall2020', num_demo_participants=2, app_sequence=['survey_en','crt','trust','bret','dice_roll'])] LANGUAGE_CODE = 'en' LANGUAGE_CODE = 'fr' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' ROOMS = [ dict( name = 'stationffall2020', display_name = 'HEC Incubator Fall 2020 Intake', use_secure_urls = False ), ] POINTS_DECIMAL_PLACES = True ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = 'owls-are-not-what-they-seem' SECRET_KEY = 'agent cooper' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree']