bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
17 lines (16 loc) • 540 B
TypeScript
import { App } from "../../../App";
import type { CliBkndConfig, CliCommand } from "cli/types";
import { type Platform } from "./platform";
export declare const run: CliCommand;
export declare function makeConfigApp(_config: CliBkndConfig, platform?: Platform): Promise<App>;
type RunOptions = {
port: number;
memory?: boolean;
config?: string;
dbUrl?: string;
dbToken?: string;
server: Platform;
open?: boolean;
};
export declare function makeAppFromEnv(options?: Partial<RunOptions>): Promise<App>;
export {};