config.local.js 651 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. module.exports = () => {
  3. const config = (exports = {});
  4. config.logger = {
  5. level: 'DEBUG',
  6. consoleLevel: 'DEBUG',
  7. };
  8. config.mongoose = {
  9. url: 'mongodb://localhost:27017/platform',
  10. options: {
  11. // user: 'platform',
  12. // pass: 'platform2020',
  13. // authSource: 'admin',
  14. // useNewUrlParser: true,
  15. // useCreateIndex: true,
  16. // useUnifiedTopology: true,
  17. },
  18. };
  19. // config.amqp = {
  20. // client: {
  21. // hostname: '127.0.0.1',
  22. // username: 'wy',
  23. // password: '1',
  24. // vhost: 'smart',
  25. // },
  26. // app: true,
  27. // agent: true,
  28. // };
  29. return config;
  30. };