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