mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-19 13:19:42 +02:00
* Authorization added * added secret to password, md5 hashing, removed promise from verifyToken, deleted links when not authorized * added dbinsert script * turned verifyToken to middleware, added description for dbinsert, added hidden csrf field in auth form * added middlewares, user model and controller * JSDoc fix * wrong password processing fix * added comments to dbinsert script, moved salt and passHash to singe db doc * Moved salt to .env, upgradedscript for generating password was, fixed comments and JSDoc * Deleted using salt (now user is only one), changed verifying password to bcrypt.compare, added httpyOnly property to jwt cookie
23 lines
461 B
JavaScript
23 lines
461 B
JavaScript
/**
|
|
* This module reads configuration file depending on NODE_ENV
|
|
*
|
|
* @type {module}
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const NODE_ENV = process.env.NODE_ENV || 'development';
|
|
const configPath = `./${NODE_ENV}.json`;
|
|
let config;
|
|
|
|
if (fs.existsSync(path.resolve(__dirname, configPath))) {
|
|
config = require(configPath);
|
|
} else {
|
|
config = {
|
|
database: '.db',
|
|
port: 3000,
|
|
secret: 'secret'
|
|
};
|
|
}
|
|
|
|
module.exports = config;
|