import { env } from "./config/env"; import { createApp } from "./app"; const app = createApp(); app.listen(env.PORT, () => { console.log(`loveGPT backend listening on port ${env.PORT}`); });