1
0
Fork 0
mirror of synced 2024-09-09 22:27:06 +12:00
appwrite/docs/sdks/web
2023-04-13 00:13:20 +05:30
..
CHANGELOG.md
GETTING_STARTED.md Update GETTING_STARTED.md 2023-04-13 00:13:20 +05:30
README.md

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
;