- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
import type { Kv } from "@deno/kv";
|
|
export interface DenoKvOptions {
|
|
base?: string;
|
|
path?: string;
|
|
openKv?: () => Promise<Deno.Kv | Kv>;
|
|
/**
|
|
* Default TTL for all items in seconds.
|
|
*/
|
|
ttl?: number;
|
|
}
|
|
declare const _default: (opts: DenoKvOptions) => import("..").Driver<DenoKvOptions, Promise<Deno.Kv | Kv>>;
|
|
export default _default;
|