Initial
This commit is contained in:
8
server/index.js
Normal file
8
server/index.js
Normal file
@@ -0,0 +1,8 @@
|
||||
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}`);
|
||||
});
|
||||
Reference in New Issue
Block a user