mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-21 15:15:30 +02:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
import type { Schema, Template } from "../utils";
|
|
|
|
export function generate(schema: Schema): Template {
|
|
const envs = [`CLOUDFLARE_TUNNEL_TOKEN="<INSERT TOKEN>"`];
|
|
|
|
return {
|
|
envs,
|
|
};
|
|
}
|