2025-10-13 10:43:27 -03:00
|
|
|
require('dotenv').config();
|
2025-10-22 14:23:37 -03:00
|
|
|
const createApp = require('./app');
|
2025-10-13 10:43:27 -03:00
|
|
|
|
2025-10-22 14:23:37 -03:00
|
|
|
const app = createApp();
|
|
|
|
|
const PORT = process.env.PORT || 3000;
|
2025-10-13 10:43:27 -03:00
|
|
|
|
2025-10-22 14:23:37 -03:00
|
|
|
app.listen(PORT, () => {
|
|
|
|
|
console.log(`Server running on http://localhost:${PORT}`)
|
2025-10-13 10:43:27 -03:00
|
|
|
});
|