forked from HenryJrA/lfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
36 lines (27 loc) · 932 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
36
import 'dotenv/config.js'
import express from 'express'
import path from 'path'
import { fileURLToPath } from 'url'
import logger from 'morgan'
import cors from 'cors'
import { router as authRouter } from './routes/auth.js'
import { router as profilesRouter } from './routes/profiles.js'
import { router as eventsRouter } from './routes/events.js'
import('./config/database.js')
const app = express()
app.use(express.static(path.join(path.dirname(fileURLToPath(import.meta.url)),'build')))
app.use(cors())
app.use(logger('dev'))
app.use(express.json())
app.use('/api/auth', authRouter)
app.use('/api/profiles', profilesRouter)
app.use('/api/events', eventsRouter)
app.get("/*", function (req, res) {
res.sendFile(
path.join(path.dirname(fileURLToPath(import.meta.url)), "build", "index.html")
)
})
const port = process.env.PORT || 3001
app.listen(port, () => {
console.log(`Express is listening on port ${port}.`)
})