mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-13 08:24:46 +00:00
7 lines
252 B
JavaScript
7 lines
252 B
JavaScript
var express = require('express');
|
|
var serveStatic = require('serve-static');
|
|
var app = express();
|
|
app.use(serveStatic(__dirname + "/dist"));
|
|
var port = process.env.PORT || 5000;
|
|
app.listen(port);
|
|
// console.log('http://localhost:5000 server started.');
|