mirror of
https://github.com/tiennm99/store-scraper-api.git
synced 2026-05-13 18:58:40 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
import app from './index.js';
|
|
|
|
const PORT = process.env.PORT || 3000;
|
|
|
|
app.listen(PORT, '0.0.0.0', () => {
|
|
console.log(`Server is running on port ${PORT}`);
|
|
});
|