Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module.exports = {
- HOST: process.env.DB_HOST || '127.0.0.1', // or change this to just 127.0.0.1
- USER: 'root',
- PASSWORD: 'root',
- DB: 'account',
- dialect: 'mysql', // change dialect to mysql if you're not using mariadb
- pool: {
- max: 5,
- min: 0,
- acquire: 30000,
- idle: 10000
- },
- WEBSERVER_PORT: 1000 // change this to your desired port
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement