Recv/config.example.js

12 lines
329 B
JavaScript

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'
};