add dotenv, start to add signup
This commit is contained in:
parent
38accbaa1d
commit
b2a4eacc52
2 changed files with 1 additions and 13 deletions
|
@ -9,6 +9,7 @@ export function newUser(req, res) {
|
|||
}
|
||||
|
||||
export function createUser(req, res, next) {
|
||||
console.log("in create user");
|
||||
const user = new User({
|
||||
username: req.body.username,
|
||||
email: req.body.email,
|
||||
|
|
|
@ -24,24 +24,11 @@ import serverConfig from './config';
|
|||
import users from './routes/user.routes';
|
||||
|
||||
//Body parser, cookie parser, sessions, serve public assets
|
||||
const MongoStore = require('connect-mongo')(session);
|
||||
|
||||
app.use(Express.static(path.resolve(__dirname, '../static')));
|
||||
app.use(bodyParser.urlencoded({extended: true}));
|
||||
app.use(bodyParser.json());
|
||||
app.use(cookieParser());
|
||||
app.use(session({
|
||||
//this should be SECRET AND IN A SECRET FILE
|
||||
//TODO add dotenv
|
||||
secret: 'steve brule',
|
||||
resave: true,
|
||||
saveUninitialized: true,
|
||||
store: new MongoStore({
|
||||
// url: process.env.MONGODB_URI || process.env.MONGOLAB_URI,
|
||||
url: serverConfig.mongoURL,
|
||||
autoReconnect: true
|
||||
})
|
||||
}));
|
||||
app.use(passport.initialize());
|
||||
app.use(passport.session());
|
||||
app.use(Express.static(path.resolve(__dirname, '../static')));
|
||||
|
|
Loading…
Reference in a new issue