fix: listen everywhere!
All checks were successful
/ build (push) Successful in 35s

This commit is contained in:
Kakious 2024-11-21 20:58:46 -05:00
parent ec3763e0b7
commit bfdae1fbb0

View file

@ -84,7 +84,7 @@ async function getFiberData() {
const start = async () => { const start = async () => {
try { try {
await fastify.listen({ port: 3000 }); await fastify.listen({ host: "0.0.0.0", port: 3000 });
} catch (err) { } catch (err) {
fastify.log.error(err); fastify.log.error(err);
process.exit(1); process.exit(1);