mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
const express = require('express');
|
|
const serverless = require('./serverless');
|
|
|
|
const app = express();
|
|
|
|
app.use((req, res, next) => serverless(req, res, next));
|
|
app.listen(process.env.PORT || 7000, () => {
|
|
console.log(`Started addon at: http://localhost:${process.env.PORT || 7000}`)
|
|
});
|