a repository that contains microservices config files, this would contains non sensitive informations, but since it is an excercice only, we keep it simple

account.yml 357B

123456789101112131415161718192021
  1. server:
  2. port: 8082
  3. spring:
  4. application:
  5. name: account
  6. datasource:
  7. url: jdbc:mysql://localhost:3308/account
  8. username: natan
  9. password: NATAN23
  10. jpa:
  11. database-platform: org.hibernate.dialect.MySQLDialect
  12. hibernate:
  13. ddl-auto: update
  14. show-sql: true
  15. management:
  16. endpoints:
  17. web:
  18. exposure:
  19. include: "*"

Powered by TurnKey Linux.