1
0
Fork 0
mirror of synced 2024-09-15 17:09:18 +12:00
appwrite/docs/sdks/web
Bradley Schofield 8f71b9618c Fix Mistype
2021-07-07 11:25:49 +01:00
..
CHANGELOG.md
GETTING_STARTED.md Fix Mistype 2021-07-07 11:25:49 +01:00
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
;