Advertisement
Guest User

Untitled

a guest
Jun 8th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. spring:
  2. profiles: common-prod
  3. # POSTGRE
  4. datasource:
  5. url: ${DATABASE_URL:jdbc:postgresql://localhost:5432/dbname}
  6. driver-class-name: org.postgresql.Driver
  7. username: pguser
  8. password: pguser
  9. jpa:
  10. database-platform: org.hibernate.dialect.PostgreSQLDialect
  11. hibernate:
  12. ddl-auto: none
  13. properties:
  14. hibernate.default_schema: public
  15. #LIQUIBASE
  16. liquibase:
  17. enabled: true
  18. change-log: /db/changelog/db-changelog-master.xml
  19. drop-first: false
  20. ---
  21. spring:
  22. profiles: common-dev
  23. # POSTGRE
  24. datasource:
  25. url: ${DATABASE_URL:jdbc:postgresql://localhost:5432/dbname-dev}
  26. username: pguserdev
  27. password: pguserdev
  28. #LIQUIBASE
  29. liquibase:
  30. enabled: true
  31. drop-first: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement