application.yml 500 B

1234567891011121314151617181920212223242526272829
  1. server:
  2. port: ${port:8080}
  3. clients:
  4. stock:
  5. url: ${stock_provider:https://api.tiingo.com/tiingo}
  6. key: ${stock_key:}
  7. exchange:
  8. url: ${exchange_provider:https://v6.exchangerate-api.com/v6}
  9. key: ${exchange_key:}
  10. inference:
  11. url: ${inference_client:}
  12. model: ${inference_model:}
  13. encryption:
  14. key: ${encryption_key:}
  15. auth:
  16. api: ${auth_api:}
  17. spring:
  18. data:
  19. mongodb:
  20. uri: ${mongo:}
  21. database: ${database:stocks}
  22. springdoc:
  23. api-docs:
  24. path: /api-docs