.example.env 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-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. # Your email host details to use to send verification emails.
  35. # More info on http://nodemailer.com/
  36. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  37. MAIL_HOST=
  38. MAIL_PORT=
  39. MAIL_SECURE=
  40. MAIL_USER=
  41. MAIL_FROM=
  42. MAIL_PASSWORD=
  43. # The email address that will receive submitted reports.
  44. REPORT_MAIL=
  45. # Support email to show on the app
  46. CONTACT_EMAIL=