8 lines
173 B
JavaScript
Executable File
8 lines
173 B
JavaScript
Executable File
import app from './app.js'
|
|
|
|
const port = process.env.PORT || 3001
|
|
|
|
app.listen(port, '0.0.0.0', () => {
|
|
console.log(`✅ Backend listening at http://localhost:${port}`)
|
|
})
|