27 lines
541 B
JavaScript
27 lines
541 B
JavaScript
const db = [
|
|
|
|
{
|
|
client_url: "http://localhost:8080",
|
|
db_conf: {
|
|
DB: "whaticket",
|
|
DB_HOST: "localhost",
|
|
DB_USER: "whaticket",
|
|
DB_PASS: "strongpassword",
|
|
DB_PORT: "3306"
|
|
}
|
|
},
|
|
|
|
{
|
|
client_url: "http://localhost:8081",
|
|
db_conf: {
|
|
DB: "whaticket",
|
|
DB_HOST: "localhost",
|
|
DB_USER: "whaticket",
|
|
DB_PASS: "strongpassword",
|
|
DB_PORT: "3306"
|
|
}
|
|
}
|
|
|
|
]
|
|
|
|
module.exports = db; |