1
0
forked from notBrad/bubo-rss

Create server.js

Added server file to run Express on Glitch
This commit is contained in:
George Mandis 2020-02-04 10:07:55 -05:00 committed by GitHub
parent 949bea60b3
commit 53843e949e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
server.js Normal file
View File

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