.example.env 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # App port to run on
  2. PORT=3000
  3. # The domain that this website is on
  4. DEFAULT_DOMAIN="kutt.it"
  5. # Neo4j database credential details
  6. DB_URI="bolt://localhost"
  7. DB_USERNAME=
  8. DB_PASSWORD=
  9. # Redis host and port
  10. REDIS_DISABLED=false
  11. REDIS_HOST="127.0.0.1"
  12. REDIS_PORT=6379
  13. REDIS_PASSWORD=
  14. # The daily limit for each user
  15. USER_LIMIT_PER_DAY=50
  16. # A passphrase to encrypt JWT. Use a long and secure key.
  17. JWT_SECRET=securekey
  18. # Admin emails so they can access admin actions on settings page
  19. # Comma seperated
  20. ADMIN_EMAILS=
  21. # Invisible reCaptcha secret key
  22. # Create one in https://www.google.com/recaptcha/intro/
  23. RECAPTCHA_SITE_KEY=6LdVeUYUAAAAAAPX2XAH71soH8xVPrMjpIR3pE8f
  24. RECAPTCHA_SECRET_KEY=
  25. # Google Cloud API to prevent from users from submitting malware URLs.
  26. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  27. GOOGLE_SAFE_BROWSING_KEY=
  28. # Google Analytics tracking ID for universal analytics.
  29. # Example: UA-XXXX-XX
  30. GOOGLE_ANALYTICS=
  31. # Your email host details to use to send verification emails.
  32. # More info on http://nodemailer.com/
  33. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  34. MAIL_HOST=
  35. MAIL_PORT=587
  36. MAIL_SECURE=
  37. MAIL_USER=
  38. MAIL_FROM=
  39. MAIL_PASSWORD=
  40. # The email address that will receive submitted reports.
  41. REPORT_MAIL=
  42. # Support email to show on the app
  43. CONTACT_EMAIL=