From 53843e949e17863df1e435a427138fea10ee9ad7 Mon Sep 17 00:00:00 2001 From: George Mandis Date: Tue, 4 Feb 2020 10:07:55 -0500 Subject: [PATCH] Create server.js Added server file to run Express on Glitch --- server.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 server.js diff --git a/server.js b/server.js new file mode 100644 index 0000000..acac933 --- /dev/null +++ b/server.js @@ -0,0 +1,21 @@ +// Bubo RSS (on Glitch!) + +// init project +const express = require("express"); +const app = express(); + +// we've started you off with Express, +// but feel free to use whatever libs or frameworks you'd like through `package.json`. + +// http://expressjs.com/en/starter/static-files.html +app.use(express.static("output")); + +// http://expressjs.com/en/starter/basic-routing.html +app.get("/", function(request, response) { + response.sendFile(__dirname + "/output/index.html"); +}); + +// listen for requests :) +const listener = app.listen(process.env.PORT, function() { + console.log("Your app is listening on port " + listener.address().port); +});