import dotenv from 'dotenv' import { dirname, resolve } from 'node:path' import { fileURLToPath } from 'node:url' import { createApp } from './app.js' const __dirname = dirname(fileURLToPath(import.meta.url)) dotenv.config({ path: resolve(__dirname, '../../.env') }) dotenv.config({ path: resolve(__dirname, '../.env') }) const app = createApp() const PORT = process.env.PORT || 5000 app.listen(PORT, () => { console.log(`[server] Server running on http://localhost:${PORT}`) })