Advertisement
Maybe_c

config2

Mar 14th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. module.exports = {
  2. HOST: process.env.DB_HOST || '127.0.0.1', // or change this to just 127.0.0.1
  3. USER: 'root',
  4. PASSWORD: 'root',
  5. DB: 'account',
  6. dialect: 'mysql', // change dialect to mysql if you're not using mariadb
  7. pool: {
  8. max: 5,
  9. min: 0,
  10. acquire: 30000,
  11. idle: 10000
  12. },
  13. WEBSERVER_PORT: 1000 // change this to your desired port
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement