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',
|
|
|
|
|
href: 'https://github.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;
|