from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=0.0004, participation_fee=0) SESSION_CONFIGS = [ dict( name='survey_only', num_demo_participants=1, app_sequence=['Cover_crops_survey'] ), dict(name='Round_1', num_demo_participants=4, app_sequence=['Round_1']), dict(name='Round_2', num_demo_participants=4, app_sequence=['Round_2']), dict(name='Round_3', num_demo_participants=4, app_sequence=['Round_3']), dict(name='Round_4', num_demo_participants=4, app_sequence=['Round_4']), dict( name='Full_experiment', num_demo_participants=4, app_sequence=[ 'Practice_round', 'Round_1', 'Round_2', 'Round_3', 'Round_4', 'Cover_crops_survey', ], ), dict(name='Paying_round', num_demo_participants=2, app_sequence=['Paying_round']), dict( name='my_session', num_demo_participants=2, app_sequence=['Round_1_to_play_with'] ), ] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = False DEMO_PAGE_INTRO_HTML = '' 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']