Tidy it up a bit
parent
285329bbce
commit
d712d45763
|
@ -1,28 +1,19 @@
|
||||||
// Import things
|
// Import things
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const { is } = require('express/lib/request');
|
|
||||||
const res = require('express/lib/response');
|
|
||||||
const app = express();
|
const app = express();
|
||||||
const path = require('path');
|
|
||||||
const server = require('http').createServer(app);
|
const server = require('http').createServer(app);
|
||||||
const port = process.env.PORT || 3430;
|
const port = process.env.PORT || 3430;
|
||||||
var fs = require('fs');;
|
|
||||||
|
|
||||||
// Database for the demo site,
|
// Set the templates folder for the thingy
|
||||||
var demoDB = [
|
|
||||||
{
|
|
||||||
name: "Poggere"
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
// Use /Public as the path for css and such
|
|
||||||
app.set('views', __dirname + '/../Templates');
|
app.set('views', __dirname + '/../Templates');
|
||||||
app.set('view engine', 'ejs');
|
app.set('view engine', 'ejs');
|
||||||
|
|
||||||
|
// Makes it so that the Public folder mounts under /
|
||||||
app.use(express.static(__dirname + '/../Public'));
|
app.use(express.static(__dirname + '/../Public'));
|
||||||
|
|
||||||
// Main page
|
// Main page
|
||||||
app.get('/', function(req, res){
|
app.get('/', function(req, res){
|
||||||
res.render('app', {site:1, db: demoDB});
|
res.render('index');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Simple way to expose a function
|
// Simple way to expose a function
|
||||||
|
|
Loading…
Reference in New Issue