.example.env 1.6 KB

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