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