-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
34 lines (31 loc) · 1.02 KB
/
index.js
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
const express = require('express');
const app = express();
const taskRoutes = require('./routes/taskRoute')
const connectDB = require('./db/connection')
require('dotenv').config();
const notFound = require('./middleware/not-found')
const errorHandlerMiddleware = require('./middleware/error-handler')
// middlewares
app.use(express.static('./public'));
app.use(express.json());
app.use('/api/v1/tasks', taskRoutes);
app.use(notFound)
app.use(errorHandlerMiddleware);
// app.get('/api/v1/tasks') -get all task
// app.post('/api/v1/tasks') -create task
// app.get('/api/v1/tasks/:id') -get single task
// app.patch('/api/v1/tasks/:id') -update single task
// app.delete('/api/v1/tasks/:id') -delete task
const port = process.env.PORT || 5000;
const DBURI = process.env.MONGO_URI;
const start = async () => {
try{
await connectDB(DBURI)
app.listen(port, ()=>{
console.log(`server is listening on port ${port}`)
})
}catch(e){
console.log(e)
}
}
start();