mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
8 lines
253 B
JavaScript
8 lines
253 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.');
|