6 lines
188 B
JavaScript
6 lines
188 B
JavaScript
require('dotenv').config();
|
|
const app = require("./src/app");
|
|
const PORT = process.env.PORT || 3000;
|
|
|
|
app.listen(PORT, () => console.log(`Image API running at http://localhost:${PORT}`));
|