feat: use remote registry
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m2s

This commit is contained in:
max_richter 2024-12-20 16:06:18 +01:00
parent dc46c4b64c
commit 385d1dd831
Signed by: max
GPG Key ID: 51973802EF3F77C5

View File

@ -32,7 +32,11 @@
let performanceStore = createPerformanceStore();
const registryCache = new IndexDBCache("node-registry");
const nodeRegistry = new RemoteNodeRegistry("", registryCache);
const nodeRegistry = new RemoteNodeRegistry(
"https://node-store.app.max-richter.dev/nodes",
// "http://localhost:8000",
registryCache,
);
const workerRuntime = new WorkerRuntimeExecutor();
const runtimeCache = new MemoryRuntimeCache();
const memoryRuntime = new MemoryRuntimeExecutor(nodeRegistry, runtimeCache);