begin backend implementation

This commit is contained in:
2023-07-08 13:31:42 +02:00
parent ca5ab2d74a
commit be263fcd6b
5 changed files with 44 additions and 1368 deletions

View File

@@ -41,5 +41,6 @@ app.use( ( request, response ) => {
response.sendFile( path.join( __dirname + '/../webapp/dist/index.html' ) );
} );
const PORT = process.env.PORT || 8080;
const PORT = process.env.PORT || 8081;
console.log( 'Server listening on Port ' + PORT );
http.createServer( app ).listen( PORT );