from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='tutorial_02_session', num_demo_participants=None, app_sequence=['tutorial_02_public_goods']), dict(name='Survey_test', num_demo_participants=None, app_sequence=['Survey']), dict(name='Tutorial_test', num_demo_participants=None, app_sequence=['Game_Tutorial']), dict(name='PGG_single_test', num_demo_participants=None, app_sequence=['PGG_disaster_single']), dict(name='PGG_Game_Single', num_demo_participants=None, app_sequence=['Survey', 'Game_Tutorial', 'PGG_disaster_single'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' 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']