This commit is contained in:
tree 2023-01-30 15:54:03 +01:00
rodič 47211b6133
revize 01f006122b
2 změnil soubory, kde provedl 6 přidání a 5 odebrání

Zobrazit soubor

@ -19,7 +19,8 @@ export class DeConfEngine {
this.srcDir = this.options.srcDir || "./data";
this.outputDir = this.options.outputDir || "./dist";
this.publicUrl = this.options.publicUrl || "https://data.prgblockweek.com";
this.exploreUrl = this.options.exploreUrl || "https://explore.prgblockweek.com";
this.exploreUrl = this.options.exploreUrl ||
"https://explore.prgblockweek.com";
this.githubUrl = this.options.githubUrl ||
"https://github.com/utxo-foundation/prague-blockchain-week/tree/main/data";

Zobrazit soubor

@ -1,10 +1,10 @@
import { DeConfEngine } from "./engine.js";
const deconf = new DeConfEngine({
publicUrl: "https://mirror.data.prgblockweek.com",
exploreUrl: "https://mirror.explore.prgblockweek.com",
outputDir: "./dist-mirror"
publicUrl: "https://mirror.data.prgblockweek.com",
exploreUrl: "https://mirror.explore.prgblockweek.com",
outputDir: "./dist-mirror",
});
await deconf.init();
await deconf.build();
await deconf.build();