open port 10000

This commit is contained in:
Dooho Yi 2022-01-12 14:00:12 +09:00
parent 60ce95ff84
commit 332981c8b0

View file

@ -66,7 +66,7 @@ fastify.post("/", async function (request, reply) {
}); });
//listen //listen
fastify.listen(process.env.PORT, function (err, address) { fastify.listen(10000, function (err, address) {
if (err) { if (err) {
fastify.log.error(err) fastify.log.error(err)
process.exit(1) process.exit(1)