The OpenQ-CoinAPI provides realtime token prices from CoinGecko.
It uses a Redis cache to lower our API usage and provide faster results
The easiest way to boot Redis locally is with Docker.
docker run --name redis -d -p 6379:6379 redis:6.2.6-alpine
Set the REDIS_URL
environment variable to localhost
in .env
REDIS_URL=localhost
yarn start:dev