Files
message-pusher/config.js
T
2021-01-17 14:26:33 +08:00

10 lines
199 B
JavaScript

const config = {
port: process.env.PORT || 3000,
database: 'data.db',
href: 'https://github.com/',
session_secret: 'change this',
cookie_secret: 'change this',
};
module.exports = config;