.example.env 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # App port to run on
  2. PORT=3000
  3. # The domain that this website is on
  4. DEFAULT_DOMAIN="localhost:3000"
  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. # Create a cooldown for non-logged in users in minutes
  17. # Set 0 to disable
  18. NON_USER_COOLDOWN=0
  19. # A passphrase to encrypt JWT. Use a long and secure key.
  20. JWT_SECRET=securekey
  21. # Admin emails so they can access admin actions on settings page
  22. # Comma seperated
  23. ADMIN_EMAILS=
  24. # Invisible reCaptcha secret key
  25. # Create one in https://www.google.com/recaptcha/intro/
  26. RECAPTCHA_SITE_KEY=
  27. RECAPTCHA_SECRET_KEY=
  28. # Google Cloud API to prevent from users from submitting malware URLs.
  29. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  30. GOOGLE_SAFE_BROWSING_KEY=
  31. # Google Analytics tracking ID for universal analytics.
  32. # Example: UA-XXXX-XX
  33. GOOGLE_ANALYTICS=
  34. # Google Analytics tracking ID for universal analytics
  35. # This one is used for links
  36. # GOOGLE_ANALYRICS_UNIVERSAL=
  37. # Your email host details to use to send verification emails.
  38. # More info on http://nodemailer.com/
  39. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  40. MAIL_HOST=
  41. MAIL_PORT=
  42. MAIL_SECURE=true
  43. MAIL_USER=
  44. MAIL_FROM=
  45. MAIL_PASSWORD=
  46. # The email address that will receive submitted reports.
  47. REPORT_MAIL=
  48. # Support email to show on the app
  49. CONTACT_EMAIL=