test.ini 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # pod - TurboGears 2 testing environment configuration
  3. #
  4. # The %(here)s variable will be replaced with the parent directory of this file
  5. #
  6. [DEFAULT]
  7. debug = true
  8. # Uncomment and replace with the address which should receive any error reports
  9. # email_to = you@yourdomain.com
  10. smtp_server = localhost
  11. error_email_from = turbogears@localhost
  12. radicale.server.port = 15232
  13. radicale.client.port = 15232
  14. radicale.server.filesystem.folder = /tmp/tracim_tests_radicale_fs
  15. radicale.client.base_url = http://localhost:15232
  16. [server:main]
  17. use = egg:gearbox#wsgiref
  18. host = 127.0.0.1
  19. port = 8080
  20. [app:main]
  21. sqlalchemy.url = sqlite:///tracim_test.sqlite
  22. use = config:development.ini
  23. [app:main_without_authn]
  24. use = main
  25. skip_authentication = True
  26. [app:ldap]
  27. sqlalchemy.url = sqlite:///tracim_test.sqlite
  28. auth_type = ldap
  29. ldap_url = ldap://localhost:3333
  30. ldap_base_dn = dc=directory,dc=fsf,dc=org
  31. ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
  32. ldap_bind_pass = toor
  33. ldap_ldap_naming_attribute = uid
  34. ldap_user_attributes = mail=email,pubname=display_name
  35. ldap_tls = False
  36. ldap_group_enabled = False
  37. use = config:development.ini
  38. [app:radicale]
  39. sqlalchemy.url = sqlite:///tracim_test.sqlite
  40. use = config:development.ini
  41. # Add additional test specific configuration options as necessary.