Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. ---
  2. grails:
  3. profile: web
  4. codegen:
  5. defaultPackage: qrbws
  6. mail:
  7. host: 'smtp.gmail.com'
  8. port: 465
  9. username: '[email protected]'
  10. password: 'qrbibliokode2015'
  11. props:
  12. mail.smtp.auth: 'true'
  13. info:
  14. app:
  15. name: '@info.app.name@'
  16. version: '@info.app.version@'
  17. grailsVersion: '@info.app.grailsVersion@'
  18. spring:
  19. groovy:
  20. template:
  21. check-template-location: false
  22.  
  23. ---
  24. grails:
  25. mime:
  26. disable:
  27. accept:
  28. header:
  29. userAgents:
  30. - Gecko
  31. - WebKit
  32. - Presto
  33. - Trident
  34. types:
  35. all: '*/*'
  36. atom: application/atom+xml
  37. css: text/css
  38. csv: text/csv
  39. form: application/x-www-form-urlencoded
  40. html:
  41. - text/html
  42. - application/xhtml+xml
  43. js: text/javascript
  44. json:
  45. - application/json
  46. - text/json
  47. multipartForm: multipart/form-data
  48. rss: application/rss+xml
  49. text: text/plain
  50. hal:
  51. - application/hal+json
  52. - application/hal+xml
  53. xml:
  54. - text/xml
  55. - application/xml
  56. urlmapping:
  57. cache:
  58. maxsize: 1000
  59. controllers:
  60. defaultScope: singleton
  61. converters:
  62. encoding: UTF-8
  63. hibernate:
  64. cache:
  65. queries: false
  66. views:
  67. default:
  68. codec: html
  69. gsp:
  70. encoding: UTF-8
  71. htmlcodec: xml
  72. codecs:
  73. expression: html
  74. scriptlets: html
  75. taglib: none
  76. staticparts: none
  77.  
  78. ---
  79. environments:
  80. development:
  81. dataSource:
  82. pooled: true
  83. jmxExport: true
  84. driverClassName: org.postgresql.Driver
  85. username: postgres
  86. password: postgres
  87. dbCreate: create-drop
  88. url: jdbc:postgresql://localhost:5432/qrb_dev
  89. test:
  90. dataSource:
  91. dbCreate: update
  92. url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement