17 lines
382 B
JavaScript
Executable File
17 lines
382 B
JavaScript
Executable File
var config = {};
|
|
config.db = {};
|
|
|
|
config.db.type = 'mysql';
|
|
config.db.charset = 'utf8';
|
|
|
|
config.db.username = 'm1344_dziennik';
|
|
config.db.password = 'Julian2020!';
|
|
config.db.host = 'mysql49.mydevil.net';
|
|
config.db.dbname = 'm1344_dziennik'; // DB name
|
|
|
|
config.db.users_tbl = 'users'; // table name
|
|
// config.db.another_tbl = 'next_table'; // ...
|
|
|
|
// export
|
|
module.exports = config;
|