mirror of
https://github.com/appwrite/appwrite
synced 2026-05-02 10:57:18 +00:00
313 B
313 B
Getting Started
Initialise the Appwrite SDK in your code, and setup your API credentials:
// Init your JS SDK
var appwrite = new Appwrite();
appwrite
.setEndpoint('http://localhost/v1') // Set only when using self-hosted solution
.setProject('455x34dfkj') // Your Appwrite Project UID
;