-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
28 lines (23 loc) · 854 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
const express = require('express')
const app = express()
var cors = require('cors');
const path = require('path')
const PORT = process.env.PORT || 4000
app.use(express.json())
app.use(cors());
require('./db/connfig');
// app.use( "/" , require( './routes/index') )
app.use( "/api/users" , require( './routes/users') )
// app.use( "/api/report" , require( './routes/report') )
// app.use( "/api/holding" , require( './routes/holding') )
// app.use( "/api/watchlist" , require( './routes/watchlist') )
// app.use( "/api/transhistory" , require( './routes/transHistory') )
if(process.env.NODE_ENV=="production"){
app.use(express.static('client/build'))
app.get("*",(req,res)=>{
res.sendFile(path.resolve(__dirname,'client','build','index.html'))
})
}
app.listen(PORT,()=>{
console.log("server is running on",PORT)
})