1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00
appwrite/docs/sdks/javascript
2020-04-05 23:39:45 +03:00
..
CHANGELOG.md Updated SDKs 2020-04-05 23:39:45 +03:00
README.md Updated SDKs 2020-04-05 23:39:45 +03:00

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
;