from os import environ SESSION_CONFIGS = [ dict( name='punishment', display_name="Public goods with punishemnt", app_sequence=['welcome','simple','punishment'], num_demo_participants=4, ), ] SESSION_CONFIG_DEFAULTS = dict(real_world_currency_per_point=1.00, participation_fee=0.00, doc="") LANGUAGE_CODE = 'en' REAL_WORLD_CURRENCY_CODE = 'EUR' USE_POINTS = True ADMIN_USERNAME = 'admin' # for security, best to set admin password in an environment variable ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') DEMO_PAGE_INTRO_HTML = """ """ DEMO_PAGE_TITLE = "Public Good Game" SECRET_KEY = '12345' # if an app is included in SESSION_CONFIGS, you don't need to list it here INSTALLED_APPS = ['otree'] PARTICIPANT_FIELDS = [] SESSION_FIELDS = []