mirror of
https://github.com/songquanpeng/message-pusher.git
synced 2025-09-26 20:21:22 +08:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
const config = {
|
|
allowRegister: false,
|
|
port: process.env.PORT || 3000,
|
|
database: 'data.db',
|
|
href: process.env.HREF || 'https://your.domain.com/',
|
|
session_secret: 'change this',
|
|
cookie_secret: 'change this',
|
|
};
|
|
|
|
module.exports = config;
|