Guest User

Untitled

a guest
Jun 13th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. application {
  2.  
  3. name = "groovy"
  4. mode = "dev"
  5. secret = "0r8lkhhb9i8zyxc6ftx0puujqh4qfh7bqu7a62zudpbxvf0rmtq3b2mzughhnets"
  6.  
  7. future.bindJPAObjects = true
  8. future.escapeInTemplates = true
  9.  
  10. http {
  11. cacheControl = 3600
  12. useETag = true
  13. port = 8080
  14. }
  15.  
  16. db {
  17. url = "jdbc:postgresql://localhost/groovy_dev"
  18. driver = "org.postgresql.Driver"
  19. user = "postgres"
  20. pass = "postgres"
  21. }
  22.  
  23. jpa {
  24. dialect = "org.hibernate.dialect.PostgreSQLDialect"
  25. ddl = "update"
  26. debugSQL = true
  27. }
  28.  
  29. modules {
  30. secure = "${play.path}/modules/secure"
  31. }
  32. }
  33.  
  34. ids {
  35. test {
  36.  
  37. tmp = "none"
  38. mail.smtp = "mock"
  39. db.url = "jdbc:postgresql://localhost/groovy_test"
  40. jpa.ddl = "create-drop"
  41.  
  42. http {
  43. cacheControl=0
  44. useETag=false
  45. }
  46. modules {
  47. cobertura = "${play.path}/modules/cobertura"
  48. }
  49. }
  50. }
Add Comment
Please, Sign In to add comment