.example.env 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # App port to run on
  2. PORT=3000
  3. # The domain that this website is on
  4. DEFAULT_DOMAIN="localhost:3000"
  5. # Postgres database credential details
  6. DB_HOST=localhost
  7. DB_NAME=postgres
  8. DB_USER=
  9. DB_PASSWORD=
  10. # ONLY NEEDED FOR MIGRATION !!1!
  11. # Neo4j database credential details
  12. NEO4J_DB_URI="bolt://localhost"
  13. NEO4J_DB_USERNAME=neo4j
  14. NEO4J_DB_PASSWORD=BjEphmupAf1D5pDD
  15. # Redis host and port
  16. REDIS_DISABLED=false
  17. REDIS_HOST="127.0.0.1"
  18. REDIS_PORT=6379
  19. REDIS_PASSWORD=
  20. # The daily limit for each user
  21. USER_LIMIT_PER_DAY=50
  22. # Create a cooldown for non-logged in users in minutes
  23. # Set 0 to disable
  24. NON_USER_COOLDOWN=0
  25. # Max number of visits for each link to have detailed stats
  26. DEFAULT_MAX_STATS_PER_LINK=5000
  27. # Use HTTPS for links with custom domain
  28. CUSTOM_DOMAIN_USE_HTTPS=false
  29. # A passphrase to encrypt JWT. Use a long and secure key.
  30. JWT_SECRET=securekey
  31. # Admin emails so they can access admin actions on settings page
  32. # Comma seperated
  33. ADMIN_EMAILS=
  34. # Invisible reCaptcha secret key
  35. # Create one in https://www.google.com/recaptcha/intro/
  36. RECAPTCHA_SITE_KEY=
  37. RECAPTCHA_SECRET_KEY=
  38. # Google Cloud API to prevent from users from submitting malware URLs.
  39. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  40. GOOGLE_SAFE_BROWSING_KEY=
  41. # Google Analytics tracking ID for universal analytics.
  42. # Example: UA-XXXX-XX
  43. GOOGLE_ANALYTICS=
  44. GOOGLE_ANALYTICS_UNIVERSAL=
  45. # Google Analytics tracking ID for universal analytics
  46. # This one is used for links
  47. # GOOGLE_ANALYRICS_UNIVERSAL=
  48. # Your email host details to use to send verification emails.
  49. # More info on http://nodemailer.com/
  50. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  51. MAIL_HOST=
  52. MAIL_PORT=
  53. MAIL_SECURE=true
  54. MAIL_USER=
  55. MAIL_FROM=
  56. MAIL_PASSWORD=
  57. # The email address that will receive submitted reports.
  58. REPORT_MAIL=
  59. # Support email to show on the app
  60. CONTACT_EMAIL=