const { createApp } = require('./app'); const PORT = Number(process.env.PORT || process.env.MIXEDASSETS_PORT || 3000); const app = createApp(); app.listen(PORT, () => { console.log(`MixedAssets API listening on http://localhost:${PORT}`); });