mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
565 B
565 B
import { Client, Migrations } from "@appwrite.io/console";
const client = new Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2'); // Your project ID
const migrations = new Migrations(client);
const result = await migrations.getNHostReport( [], // resources '', // subdomain '', // region '<ADMIN_SECRET>', // adminSecret '', // database '', // username '', // password null // port (optional) );
console.log(response);