mirror of
https://github.com/DeNNiiInc/Connect-5.git
synced 2026-04-17 20:36:00 +00:00
14 lines
448 B
JavaScript
14 lines
448 B
JavaScript
// Database Configuration File
|
|
// IMPORTANT: This file contains sensitive credentials and should NEVER be committed to git
|
|
// Copy this file to db.config.js and update with your actual database credentials
|
|
|
|
module.exports = {
|
|
host: 'your-database-host.com',
|
|
user: 'your-database-username',
|
|
password: 'your-secure-password',
|
|
database: 'your-database-name',
|
|
waitForConnections: true,
|
|
connectionLimit: 10,
|
|
queueLimit: 0
|
|
};
|