123456789101112131415161718 |
- DEBUG = True
- SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/test.db'
- # Used when generating the measurement script
- PEERFINDER_DN42 = "http://127.0.0.1:8888"
- # Maximum age, in seconds, after which a task is not distributed to
- # participants anymore. This avoids a huge backlog when new participants
- # join the worker pool. Default: 0 (no restriction)
- MAX_AGE = 10800
- # For getting notifications by mail when there is an error
- ADMINS = ["foo@example.com"]
- # SMTP configuration for emails
- SMTP_SERVER = "127.0.0.1"
- FROM_ADDRESS = "peerfinder@example.com"
|