mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
/*
|
|
* myevent - app.js
|
|
*
|
|
* Created by Janis Hutz 02/26/2023, Licensed under the GPL V3 License
|
|
* https://janishutz.com, development@janishutz.com
|
|
*
|
|
*
|
|
*/
|
|
|
|
const express = require( 'express' );
|
|
let app = express();
|
|
const path = require( 'path' );
|
|
const expressSession = require( 'express-session' );
|
|
const fs = require( 'fs' );
|
|
const bodyParser = require( 'body-parser' );
|
|
const cookieParser = require( 'cookie-parser' );
|
|
const favicon = require( 'serve-favicon' );
|
|
const http = require( 'http' );
|
|
|
|
const env = process.env.PROD || false;
|
|
|
|
const root = process.env.ROOT || '/order';
|
|
|
|
// initialise express with middlewares
|
|
app.use( expressSession( {
|
|
secret: 'gaoevgoawefgo083tq2rfvöfaf0p8',
|
|
resave: true,
|
|
saveUninitialized: true
|
|
} ) );
|
|
|
|
app.use( bodyParser.urlencoded( { extended: false } ) );
|
|
app.use( bodyParser.json() );
|
|
app.use( cookieParser() );
|
|
app.use( favicon( path.join( __dirname + '/ui/assets/logo.png' ) ) );
|
|
|
|
// create 404 handler
|
|
app.use( ( request, response ) => {
|
|
response.sendFile( path.join( __dirname + '' ) );
|
|
} );
|
|
|
|
|
|
if ( root !== '/' ) {
|
|
app.get( '/', ( request, response ) => {
|
|
|
|
} );
|
|
}
|
|
|
|
|
|
const PORT = process.env.PORT || 8080;
|
|
http.createServer( app ).listen( PORT ); |