We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb06e9b commit 3ff2332Copy full SHA for 3ff2332
src/database/config/config.js
@@ -10,19 +10,19 @@ module.exports = {
10
dialect: "mysql"
11
},
12
test: {
13
- username: "",
14
- password: "",
15
- database: "",
16
- host: "",
17
- port: "",
+ username: process.env.MYSQL_USER,
+ password: process.env.MYSQL_PASSWORD,
+ database: process.env.MYSQL_DATABASE,
+ host: process.env.MYSQL_HOST,
+ port: process.env.MYSQL_PORT,
18
19
20
production: {
21
22
23
24
25
26
27
}
28
0 commit comments