config.example.js 522 B

123456789101112131415161718192021222324
  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. /* A passphrase to encrypt JWT. Use a long and secure key. */
  10. JWT_SECRET: 'securekey',
  11. /*
  12. Your email host details to use to send verification emails.
  13. More info on http://nodemailer.com/
  14. */
  15. MAIL_HOST: '',
  16. MAIL_PORT: 587,
  17. MAIL_SECURE: false,
  18. MAIL_USER: '',
  19. MAIL_PASSWORD: '',
  20. };