2019-09-30 21:05:06 +00:00
|
|
|
const express = require("express");
|
2018-10-15 15:28:02 +00:00
|
|
|
const app = express();
|
2018-03-13 20:25:39 +00:00
|
|
|
|
|
|
|
// http://expressjs.com/en/starter/static-files.html
|
2019-09-30 21:05:06 +00:00
|
|
|
app.use(express.static("public"));
|
2018-03-13 20:25:39 +00:00
|
|
|
|
|
|
|
// http://expressjs.com/en/starter/basic-routing.html
|
2019-09-30 21:05:06 +00:00
|
|
|
app.get("/", function(request, response) {
|
|
|
|
response.sendFile(__dirname + "/views/index.html");
|
2018-03-13 20:25:39 +00:00
|
|
|
});
|
|
|
|
|
2019-11-03 11:22:00 +00:00
|
|
|
// http://expressjs.com/en/starter/basic-routing.html
|
|
|
|
app.get("/img", function(request, response) {
|
|
|
|
response.sendFile(__dirname + "/views/index.html");
|
|
|
|
});
|
|
|
|
|
2018-10-15 15:38:54 +00:00
|
|
|
const listener = app.listen(process.env.PORT, function() {
|
2019-09-30 21:05:06 +00:00
|
|
|
console.log("Your app is listening on port " + listener.address().port);
|
2018-03-13 20:25:39 +00:00
|
|
|
});
|
2019-11-03 11:22:00 +00:00
|
|
|
|
|
|
|
process.on("SIGTERM", function () {
|
|
|
|
console.log("SIGTERM received, sending SOS to Resurrect...");
|
|
|
|
require('https').get("https://resurrect.glitch.me/"+process.env.PROJECT_DOMAIN+"", process.exit)
|
|
|
|
});
|