0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-07 15:39:42 -05:00
penpot/frontend/scripts/e2e-server.js

21 lines
411 B
JavaScript
Raw Permalink Normal View History

import express from "express";
2024-06-06 00:48:41 -05:00
import compression from "compression";
import { fileURLToPath } from "url";
import path from "path";
const app = express();
2024-05-09 06:17:12 -05:00
const port = 3000;
2024-06-06 00:48:41 -05:00
app.use(compression());
2024-07-01 03:28:40 -05:00
const staticPath = path.join(
fileURLToPath(import.meta.url),
"../../resources/public",
);
app.use(express.static(staticPath));
app.listen(port, () => {
console.log(`Listening at 0.0.0.0:${port}`);
});