You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dev.js 283B

12345678910111213141516
  1. module.exports = {
  2. /** Server info */
  3. host: 'localhost',
  4. port: 3001,
  5. db: 'test',
  6. dbPort: 3306,
  7. dbDialect: 'mysql', // even for mariadb
  8. /** URL preceding endpoints */
  9. apiBase: 'api',
  10. /** Uncomment for cross-origin */
  11. corsSupported: false
  12. }