Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. security:
  2. jwt:
  3. expiration: 86400000
  4. secret: "recatt-jwt"
  5. public:
  6. path: "/public/**"
  7.  
  8. server:
  9. port: 8090
  10. servlet:
  11. context-path: /api/recatt
  12.  
  13. spring:
  14. jpa:
  15. hibernate:
  16. ddl-auto: update
  17. show-sql: false
  18. properties:
  19. hibernate:
  20. temp:
  21. use_jdbc_metadata_defaults: false
  22. format_sql: true
  23. database-platform: org.hibernate.dialect.PostgreSQLDialect
  24. datasource:
  25. driver-class-name: org.postgresql.Driver
  26. url: jdbc:postgresql://localhost:5432/recatt
  27. username: root
  28. password: ${DATABASE_PASSWORD}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement