Explorar el Código

Changed app.listen() for testing to deployment

Fixing-CORS-crash
BinHong Lee hace 6 años
padre
commit
ddc5b4589e
Se han modificado 1 ficheros con 7 adiciones y 7 borrados
  1. +7
    -7
      index.js

+ 7
- 7
index.js Ver fichero

@@ -7,17 +7,17 @@ var MIXMAX_API_KEY
var app = express()
var input

app.use(bodyParser.json({
limit: '100mb',
type: 'application/json'
}))

app.use(function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*')
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept')
next()
})

app.use(bodyParser.json({
limit: '100mb',
type: 'application/json'
}))

app.get('/help', function (req, res) {
res.send('https://github.com/binhonglee/Breakups')
})
@@ -67,8 +67,8 @@ app.post('/emailPaymentChain', function (req, res) {
res.json(emails)
})

app.listen(5000)
// app.listen(process.env.PORT)
// app.listen(5000)
app.listen(process.env.PORT)

function total (input) {
var total = 0


Cargando…
Cancelar
Guardar