.example.env 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. # Max number of visits for each link to have detailed stats
  20. DEFAULT_MAX_STATS_PER_LINK=5000
  21. # A passphrase to encrypt JWT. Use a long and secure key.
  22. JWT_SECRET=securekey
  23. # Admin emails so they can access admin actions on settings page
  24. # Comma seperated
  25. ADMIN_EMAILS=
  26. # Invisible reCaptcha secret key
  27. # Create one in https://www.google.com/recaptcha/intro/
  28. RECAPTCHA_SITE_KEY=
  29. RECAPTCHA_SECRET_KEY=
  30. # Google Cloud API to prevent from users from submitting malware URLs.
  31. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  32. GOOGLE_SAFE_BROWSING_KEY=
  33. # Google Analytics tracking ID for universal analytics.
  34. # Example: UA-XXXX-XX
  35. GOOGLE_ANALYTICS=
  36. # Google Analytics tracking ID for universal analytics
  37. # This one is used for links
  38. # GOOGLE_ANALYRICS_UNIVERSAL=
  39. # Your email host details to use to send verification emails.
  40. # More info on http://nodemailer.com/
  41. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  42. MAIL_HOST=
  43. MAIL_PORT=
  44. MAIL_SECURE=true
  45. MAIL_USER=
  46. MAIL_FROM=
  47. MAIL_PASSWORD=
  48. # The email address that will receive submitted reports.
  49. REPORT_MAIL=
  50. # Support email to show on the app
  51. CONTACT_EMAIL=