test.ini 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. [server:main]
  13. use = egg:gearbox#cherrypy
  14. host = 127.0.0.1
  15. port = 8080
  16. [app:main]
  17. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  18. use = config:development.ini
  19. [app:main_without_authn]
  20. use = main
  21. skip_authentication = True
  22. [app:ldap]
  23. sqlalchemy.url = postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
  24. auth_type = ldap
  25. ldap_url = ldap://localhost:3333
  26. ldap_base_dn = dc=directory,dc=fsf,dc=org
  27. ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
  28. ldap_bind_pass = toor
  29. ldap_ldap_naming_attribute = uid
  30. ldap_user_attributes = mail=email
  31. ldap_tls = False
  32. ldap_group_enabled = False
  33. use = config:development.ini
  34. # Add additional test specific configuration options as necessary.