Recv/config.example.js

12 lines
329 B
JavaScript
Raw Normal View History

2018-03-19 06:48:05 +00:00
const path = require('path');
module.exports = {
port: 3000,
nodeModulesPath: path.join(__dirname, 'node_modules'),
userDatabasePath: path.join(__dirname, 'data', 'users'),
fileUploadPath: path.join(__dirname, 'data', 'files'),
fileUploadPublicPath: '/files',
jwtSecret: 'change me to a random generated string'
};