-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
35 lines (31 loc) · 995 Bytes
/
server.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
35
const mongoose = require("mongoose")
const express = require("express")
const bodyParser = require("body-parser")
const path = require('path')
const transactions = require("./routes/api/transactions")
const keys = require('./config/keys')
Object.keys(keys).forEach(function(key) {
console.log(key + " : " + keys[key])
})
const db = require("./config/keys").mongoURI
mongoose
.connect(
db,
{ useNewUrlParser: true, useUnifiedTopology: true }
)
.then(() => console.log("MongoDB successfully connected"))
.catch(err => console.log(err))
const app = express()
app.use(
bodyParser.urlencoded({
extended: false
})
)
app.use(bodyParser.json())
app.use(express.static(path.join(__dirname, 'client/build')))
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname, 'client/build', 'index.html'));
})
app.use("/api/transactions", transactions)
const port = process.env.PORT || 5000
app.listen(port, () => console.log(`Server up and running on port ${port} !`))