Files
message-pusher/config.js
T

11 lines
247 B
JavaScript
Raw Normal View History

2021-01-17 10:49:19 +08:00
const config = {
2021-01-17 15:18:55 +08:00
allowRegister: true,
2021-01-17 10:49:19 +08:00
port: process.env.PORT || 3000,
database: 'data.db',
2021-01-31 18:01:36 +08:00
href: process.env.HREF || 'https://your.domain.com/',
2021-01-17 14:26:33 +08:00
session_secret: 'change this',
cookie_secret: 'change this',
2021-01-17 10:49:19 +08:00
};
module.exports = config;