Make the template
parent
5d20735904
commit
285329bbce
|
@ -0,0 +1 @@
|
||||||
|
node_modules/
|
|
@ -0,0 +1,35 @@
|
||||||
|
// Import things
|
||||||
|
const express = require('express');
|
||||||
|
const { is } = require('express/lib/request');
|
||||||
|
const res = require('express/lib/response');
|
||||||
|
const app = express();
|
||||||
|
const path = require('path');
|
||||||
|
const server = require('http').createServer(app);
|
||||||
|
const port = process.env.PORT || 3430;
|
||||||
|
var fs = require('fs');;
|
||||||
|
|
||||||
|
// Database for the demo site,
|
||||||
|
var demoDB = [
|
||||||
|
{
|
||||||
|
name: "Poggere"
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
// Use /Public as the path for css and such
|
||||||
|
app.set('views', __dirname + '/../Templates');
|
||||||
|
app.set('view engine', 'ejs');
|
||||||
|
app.use(express.static(__dirname + '/../Public'));
|
||||||
|
|
||||||
|
// Main page
|
||||||
|
app.get('/', function(req, res){
|
||||||
|
res.render('app', {site:1, db: demoDB});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Simple way to expose a function
|
||||||
|
exports = module.exports = rws;
|
||||||
|
|
||||||
|
function rws() {
|
||||||
|
server.listen(port, () => {
|
||||||
|
console.log('✅ Webserver is running ( %d )', port);
|
||||||
|
});
|
||||||
|
};
|
|
@ -0,0 +1,3 @@
|
||||||
|
#cssloaded {
|
||||||
|
color:deepskyblue;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Hello world!</title>
|
||||||
|
|
||||||
|
<!-- Links -->
|
||||||
|
<link href="style.css" rel="stylesheet" type="text/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 id="cssloaded">Hello world!</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,2 @@
|
||||||
|
var rws = require("./Components/webserver.js");
|
||||||
|
rws();
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"ejs": "^3.1.8",
|
||||||
|
"express": "^4.18.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue