server-config.example.js 685 B

123456789101112131415161718192021222324252627282930
  1. module.exports = {
  2. PORT: process.env.KUTT_PORT,
  3. /* The domain that this website is on */
  4. DEFAULT_DOMAIN: process.env.KUTT_DOMAIN,
  5. /* Neo4j database credential details */
  6. DB_URI: 'bolt://localhost',
  7. DB_USERNAME: '',
  8. DB_PASSWORD: '',
  9. /* A passphrase to encrypt JWT. Use a long and secure key. */
  10. JWT_SECRET: 'securekey',
  11. /*
  12. Invisible reCaptcha secret key
  13. Create one in https://www.google.com/recaptcha/intro/
  14. */
  15. RECAPTCHA_SECRET_KEY: '',
  16. /*
  17. Your email host details to use to send verification emails.
  18. More info on http://nodemailer.com/
  19. */
  20. MAIL_HOST: '',
  21. MAIL_PORT: 587,
  22. MAIL_SECURE: false,
  23. MAIL_USER: '',
  24. MAIL_PASSWORD: '',
  25. };