Fix Fastify port
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-01-20 15:43:22 +01:00
parent c2e3dc8d0e
commit c5013ab3fd
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ fastify.get('/', async (request, reply) => {
// Run the server!
const start = async () => {
try {
await fastify.listen(3000, '0.0.0.0')
await fastify.listen(3001, '0.0.0.0')
} catch (err) {
fastify.log.error(err)
process.exit(1)