Files
pictshare-browse/server.js
2025-07-23 18:15:03 +00:00

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}`));