diff --git a/index.html b/index.html new file mode 100644 index 0000000..d03fdaa --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + Vinlottis + + + +

Official vin lottis homepage

+ + + + diff --git a/server.js b/server.js index e69de29..88156c3 100644 --- a/server.js +++ b/server.js @@ -0,0 +1,9 @@ +const express = require('express'); +const app = express(); +const path = require('path'); + +app.get('/', function(req, res) { + res.sendFile(path.join(__dirname + '/index.html')); +}); + +app.listen(30020);