123456789101112131415161718192021 |
- # Has to be either development or production
- NODE_ENV=development
- # Default is 8074
- HTTP_PORT=8074
- # Defaults to 0.0.0.0 (listen on all interfaces)
- HTTP_HOST=
- # Whether to trust upstream (reverse) proxies like nginx
- TRUST_PROXY=true
- # Defaults to true - whether to serve the documentation page
- HOST_HOMEPAGE=true
- # Gotten from creating a client on https://genius.com/api-clients
- GENIUS_ACCESS_TOKEN=
- # Comma-separated list of HTTP bearer tokens that are excluded from rate limiting (on geniURL's side)
- AUTH_TOKENS=
- # Whether an auth token is required to be able to interact with the API
- AUTH_REQUIRED=false
|