Dwelling/config.example.js

17 lines
351 B
JavaScript
Raw Normal View History

2021-02-10 01:01:50 +04:00
exports.dwelling = {}
exports.dwelling.port = 3200;
exports.dwelling.host = "127.0.0.1";
exports.dwelling.database = {
host: "192.168.0.1",
database: "db",
user: "user",
password: "password",
timezone: "Z" };
2021-02-10 01:01:50 +04:00
exports.dwelling.guestbook = {}
exports.dwelling.guestbook.owner = "Owner";
exports.dwelling.guestbook.pageSize = 30;