-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
23 lines (15 loc) · 1004 Bytes
/
Copy pathserver.js
File metadata and controls
23 lines (15 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const express = require('express'); //Express server up and running
const connectDB = require('./config/db');
const app = express(); //initialize app variable with express
//Connect Database
connectDB();
//Init Middleware to get data in request.body from routes
app.use(express.json({extended: false}))
app.get('/', (req, res) => res.send('API Running')); //take app variable and listen on a port
//Define Routes
app.use('/api/users', require('./routes/api/users')); //Creating endpoints to point to file
app.use('/api/auth', require('./routes/api/auth')); //Creating endpoints to point to file
app.use('/api/profile', require('./routes/api/profile')); //Creating endpoints to point to file
app.use('/api/posts', require('./routes/api/posts')); //Creating endpoints to point to file
const PORT = process.env.PORT || 5000; // //take app variable and listen on a port, if no ENV set then default to port 5000.
app.listen(PORT, () => console.log(`Server Started on Port ${PORT}`)); //Call back