Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/affd1e97c2b0c478f87526f31e5d59e1914d07ed You should set ROOT_URL correctly, otherwise the web may not work correctly.

remove debug lines

pull/3/head
Ben Phelps 3 years ago
parent e2e014d9f9
commit affd1e97c2

@ -3,11 +3,8 @@ import { existsSync, copyFile } from "fs";
export default function checkAndCopyConfig(config) {
const configYaml = join(process.cwd(), "config", config);
console.log("config:", configYaml);
if (!existsSync(configYaml)) {
console.log("does not exist");
const configSkeleton = join(process.cwd(), "src", "skeleton", config);
console.log("skeleton", configSkeleton);
copyFile(configSkeleton, configYaml, (err) => {
if (err) {
console.log("error copying config", err);

Loading…
Cancel
Save