mirror of
https://github.com/appwrite/appwrite
synced 2026-04-28 00:47:50 +00:00
467 B
467 B
import { Client, Sites } from "https://deno.land/x/appwrite/mod.ts";
const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>') // Your project ID .setKey('<YOUR_API_KEY>'); // Your secret API key
const sites = new Sites(client);
const response = await sites.createVariable({ siteId: '<SITE_ID>', key: '', value: '', secret: false // optional });