1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00
appwrite/docs/sdks/web
2022-09-07 02:12:04 +00:00
..
CHANGELOG.md Changed naming conventions from JS to Web 2020-12-24 00:39:48 +02:00
GETTING_STARTED.md Fix code examples in SDK getting started 2022-09-07 02:12:04 +00:00
README.md Changed naming conventions from JS to Web 2020-12-24 00:39:48 +02:00

Getting Started

Initialise the Appwrite SDK in your code, and setup your API credentials:


// Init your Web SDK
var appwrite = new Appwrite();

appwrite
    .setEndpoint('http://localhost/v1') // Set only when using self-hosted solution
    .setProject('455x34dfkj') // Your Appwrite Project UID
;