1
0
Fork 0
mirror of synced 2024-07-03 21:50:34 +12:00
appwrite/docs/sdks/web/README.md
2020-12-24 00:39:48 +02:00

16 lines
314 B
Markdown

## Getting Started
Initialise the Appwrite SDK in your code, and setup your API credentials:
```js
// 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
;
```