.env.template 612 B

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