from os import environ SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1, participation_fee=0) SESSION_CONFIGS = [dict(name='PGG', num_demo_participants=None, app_sequence=['PGG'])] # SESSION_CONFIGS = [dict(name='Dishonest_TP', num_demo_participants=None, app_sequence=['Consent', 'PA', 'GD_TP', 'PA2', 'PGG', 'FS']), dict(name='Dishonest_NTP', num_demo_participants=None, app_sequence=['Consent', 'PA', 'GD_NTP', 'PA2', 'PGG', 'FS']), dict(name='Honest_TP', num_demo_participants=None, app_sequence=['Consent', 'PA', 'GH_TP', 'PA2', 'PGG', 'FS']), dict(name='Honest_NTP', num_demo_participants=None, app_sequence=['Consent', 'PA', 'GH_NTP', 'PA2', 'PGG', 'FS']), dict(name='test_gdntp', num_demo_participants=4, app_sequence=['GD_NTP']), dict(name='test_gdtp', num_demo_participants=4, app_sequence=['GD_TP']), dict(name='test_ghtp', num_demo_participants=4, app_sequence=['GH_TP']), dict(name='test_ghntp', num_demo_participants=4, app_sequence=['GH_NTP']), dict(name='test_pgg', num_demo_participants=None, app_sequence=['PGG']), dict(name='test_fs', num_demo_participants=None, app_sequence=['FS'])] LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'AUD' 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']