forked from hackclub/scrappy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
42 lines (37 loc) · 1.07 KB
/
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
37
38
39
40
41
42
const next = require('next')
const express = require('express')
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
app.prepare().then(() => {
const server = express()
server.all('*', (req, res) => handle(req, res))
const port = process.env.PORT || 3000
server.listen(port, (err) => {
if (err) throw err
console.log('> Ready on http://localhost:' + port)
// if (dev) {
// fetch(`http://localhost:${port}/api/regenerate-all`, {
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json'
// },
// body: JSON.stringify({
// token: process.env.SLACK_VERIFICATION_TOKEN
// })
// })
// }
// trigger own startup message in production
if (!dev) {
fetch(`http://localhost:${port}/api/startup`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
token: process.env.SLACK_VERIFICATION_TOKEN
})
})
}
})
})