-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
36 lines (30 loc) · 1.02 KB
/
Copy pathserver.js
File metadata and controls
36 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const express = require('express');
const mongoose = require('mongoose');
const bodyParser = require('body-parser');
const passport = require('passport')
//to call to the server js from the other folder
const users = require('./routes/api/users');
const posts = require('./routes/api/posts');
const profile = require('./routes/api/profile');
const app = express();
// body parser middleware
app.use(passport.initialize());
//passport config
require ('./config/passport')(passport);
app.use(bodyParser.urlencoded(({extended: false})));
app.use(bodyParser.json());
//db config
const db =require('./config/keys').mongoURI;
//connect to mongodb
mongoose
.connect(db)
.then(() => console.log('mongodb connected'))
.catch(err =>console.log(err));
//app.get('/',(req,res) => res.send('Hello world 2022'));
//passport middleware
//for route use
app.use('/api/users', users);
app.use('/api/profile', profile);
app.use('/api/posts', posts);
const port = process.env.PORT || 5001;
app.listen(port, () => console.log('Server running on port '+port));