0
20
KKKhalid Khan
Initialize your appwrite SDK code with your project ID which can be found in your project settings page.
Shortcut: appwrite.web.init
import { Appwrite } from 'appwrite';
// Init your Web SDK
const appwrite = new Appwrite();
appwrite
.setEndpoint('apiendpoint') // Your Appwrite Endpoint
.setProject('Projectid') // Your project ID
;