config.js 199 B

123456789
  1. const config = {
  2. port: process.env.PORT || 3000,
  3. database: 'data.db',
  4. href: 'https://github.com/',
  5. session_secret: 'change this',
  6. cookie_secret: 'change this',
  7. };
  8. module.exports = config;