config.js 504 B

123456789101112131415161718192021
  1. module.exports = {
  2. auth: {
  3. jwtSecret: '8af06d11-2c53-4f0b-86d7-dd24594da463',
  4. jwtExpires: 7 * 24 * 60 * 60,
  5. saltRounds: 10
  6. },
  7. server: {
  8. port: process.env.NODE_PORT || 3002
  9. },
  10. sequelize: {
  11. // See http://docs.sequelizejs.com/class/lib/sequelize.js~Sequelize.html#instance-constructor-constructor
  12. dialect: 'sqlite',
  13. database: 'project',
  14. username: null,
  15. password: null,
  16. host: null,
  17. port: null,
  18. storage: 'project.db',
  19. operatorsAliases: false
  20. }
  21. }