mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-07-29 07:33:47 +00:00
fix: convert cf-kv and excalidraw-libraries from submodules to regular files
- Remove stale cloudflare-worker submodule entry from .gitmodules - Remove .git dirs from cf-kv and excalidraw-libraries so Git tracks them as regular files - Fixes 'No url found for submodule path cf-kv' CI error
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
var static = require("node-static");
|
||||
|
||||
var file = new static.Server(".");
|
||||
PORT = 8080;
|
||||
|
||||
console.info(`Running at http://localhost:${PORT}`);
|
||||
|
||||
require("http")
|
||||
.createServer(function (request, response) {
|
||||
request
|
||||
.addListener("end", function () {
|
||||
file.serve(request, response);
|
||||
})
|
||||
.resume();
|
||||
})
|
||||
.listen(PORT);
|
||||
Reference in New Issue
Block a user