-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
23 lines (16 loc) · 768 Bytes
/
server.js
File metadata and controls
23 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Entry File
const express = require('express');
const connectDB = require('./config/db');
const app = express();
//Connect to Database (MongoDB)
connectDB();
//Init Middleware
app.use(express.json({ extended: false })); //express.json() use to be bodyParser.json
app.get(`/`, (req, res) => res.send('API Running'));
//Define Routes
app.use('/api/users', require('./routes/api/users'));
app.use('/api/auth', require('./routes/api/auth'));
app.use('/api/post', require('./routes/api/post'));
app.use('/api/profile', require('./routes/api/profile'));
const PORT = process.env.PORT || 5000; //gets the port number (when deployed variable 'PORT' will get from environment else it's port 5000)
app.listen(PORT, () => console.log(`Server Started on port: ${PORT}`));