Initial commit, cambio todo lo que apunta a github por el mio

This commit is contained in:
2025-04-09 11:29:53 +02:00
parent fef9984140
commit 691c9dc0a4
334 changed files with 365 additions and 365 deletions
@@ -10,17 +10,17 @@ import { Script } from "@/lib/types";
import { BookOpenText, Code, Globe, LinkIcon, RefreshCcw } from "lucide-react";
const generateInstallSourceUrl = (slug: string) => {
const baseUrl = `https://raw.githubusercontent.com/community-scripts/${basePath}/main`;
const baseUrl = `https://docker.imqnavarra.com:3000/jjripaper/${basePath}/main`;
return `${baseUrl}/install/${slug}-install.sh`;
};
const generateSourceUrl = (slug: string, type: string) => {
const baseUrl = `https://raw.githubusercontent.com/community-scripts/${basePath}/main`;
const baseUrl = `https://docker.imqnavarra.com:3000/jjripaper/${basePath}/main`;
return type === "vm" ? `${baseUrl}/vm/${slug}.sh` : `${baseUrl}/misc/${slug}.sh`;
};
const generateUpdateUrl = (slug: string) => {
const baseUrl = `https://raw.githubusercontent.com/community-scripts/${basePath}/main`;
const baseUrl = `https://docker.imqnavarra.com:3000/jjripaper/${basePath}/main`;
return `${baseUrl}/ct/${slug}.sh`;
};
@@ -5,7 +5,7 @@ import { Script } from "@/lib/types";
import { getDisplayValueFromType } from "../ScriptInfoBlocks";
const getInstallCommand = (scriptPath = "", isAlpine = false) => {
const url = `https://raw.githubusercontent.com/community-scripts/${basePath}/main/${scriptPath}`;
const url = `https://docker.imqnavarra.com:3000/jjripaper/${basePath}/main/${scriptPath}`;
return isAlpine
? `bash -c "$(curl -fsSL ${url})"`
: `bash -c "$(curl -fsSL ${url})"`;