@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
21 lines • 831 B
TypeScript
import type { IApp } from "../../entities";
import type { InputOptions } from "../../interfaces";
type UploadDotenvOptions = {
/**
* Location to write down the dotenv file
* @default process.cwd()
*/
targetDir?: string;
/**
* Output file name
* @default `.env.{env}`
* @example ".env.dev" | ".env.prod"
*/
fileName?: string;
isDebugging?: boolean;
};
export declare const uploadDotenvFileByApp: (envFile: string, app: IApp, env?: string, options?: InputOptions) => Promise<IApp>;
export declare const uploadDotenvFileByAppSlug: (envFile: string, appSlug: string, env?: string, options?: InputOptions) => Promise<IApp>;
export declare const uploadDotenvFile: (env?: string, options?: UploadDotenvOptions) => Promise<IApp>;
export {};
//# sourceMappingURL=dotenv-upload.d.ts.map