| 1234567891011121314151617181920212223242526272829 |
- server:
- port: ${port:8080}
- clients:
- stock:
- url: ${stock_provider:https://api.tiingo.com/tiingo}
- key: ${stock_key:}
- exchange:
- url: ${exchange_provider:https://v6.exchangerate-api.com/v6}
- key: ${exchange_key:}
- inference:
- url: ${inference_client:}
- model: ${inference_model:}
- encryption:
- key: ${encryption_key:}
- auth:
- api: ${auth_api:}
- spring:
- data:
- mongodb:
- uri: ${mongo:}
- database: ${database:stocks}
- springdoc:
- api-docs:
- path: /api-docs
|