config.example.js 911 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. PORT: 3000,
  3. /* The domain that this website is on */
  4. DEFAULT_DOMAIN: 'kutt.it',
  5. /* Neo4j database credential details */
  6. DB_URI: 'bolt://localhost',
  7. DB_USERNAME: '',
  8. DB_PASSWORD: '',
  9. /* The daily limit for each user */
  10. USER_LIMIT_PER_DAY: 50,
  11. /* A passphrase to encrypt JWT. Use a long and secure key. */
  12. JWT_SECRET: 'securekey',
  13. /*
  14. Invisible reCaptcha secret key
  15. Create one in https://www.google.com/recaptcha/intro/
  16. */
  17. RECAPTCHA_SECRET_KEY: '',
  18. /*
  19. Google Cloud API to prevent from users from submitting malware URLs.
  20. Get it from https://developers.google.com/safe-browsing/v4/get-started
  21. */
  22. GOOGLE_SAFE_BROWSING_KEY: '',
  23. /*
  24. Your email host details to use to send verification emails.
  25. More info on http://nodemailer.com/
  26. */
  27. MAIL_HOST: '',
  28. MAIL_PORT: 587,
  29. MAIL_SECURE: false,
  30. MAIL_USER: '',
  31. MAIL_PASSWORD: '',
  32. };