mirror of
https://github.com/songquanpeng/message-pusher.git
synced 2025-10-19 22:24:43 +08:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
const config = {
|
|
allowRegister: true,
|
|
port: process.env.PORT || 3000,
|
|
database: 'data.db',
|
|
href: 'https://github.com/',
|
|
session_secret: 'change this',
|
|
cookie_secret: 'change this',
|
|
};
|
|
|
|
module.exports = config;
|