ribbit/test/integration/dev-server.js

18 lines
397 B
JavaScript
Raw Permalink Normal View History

2026-05-15 15:18:31 -07:00
var liveServer = require("live-server");
var params = {
port: 5023,
host: "0.0.0.0",
open: true,
root: "test/integration",
mount: [
['/static', 'dist/ribbit'],
2026-05-15 20:31:27 -07:00
['/test', 'test/integration'],
2026-05-15 15:18:31 -07:00
],
logLevel: 2, // 0 = errors only, 1 = some, 2 = lots
};
console.log(`\n🐸 Ribbit dev server running on http://localhost:${params['port']}`);
liveServer.start(params);