@reliverse/rse
Version:
@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power
13 lines (12 loc) • 905 B
TypeScript
import type { RseConfig } from "@reliverse/cfg";
import type { DeploymentService } from "../../../../sdk-types.js";
import type { InstanceGithub } from "../../../../utils/instanceGithub.js";
import type { InstanceVercel } from "../../../../utils/instanceVercel.js";
import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
export declare function selectDeploymentService(config: RseConfig): Promise<DeploymentService>;
export declare function deployProject(githubInstance: InstanceGithub, vercelInstance: InstanceVercel, vercelToken: string, githubToken: string, skipPrompts: boolean, projectName: string, config: RseConfig, projectPath: string, primaryDomain: string, memory: ReliverseMemory, deployMode: "new" | "update", githubUsername: string): Promise<{
deployService: DeploymentService | "none";
primaryDomain: string;
isDeployed: boolean;
allDomains: string[];
}>;