import { env } from './config/env' import { buildApp } from "./app.js"; const app = buildApp() console.log(`app listening on port ${env.PORT}`) app.listen({ port: env.PORT, host: '0.0.0.0' })