Make project_id consistent

This commit is contained in:
Khushboo Verma
2024-09-10 12:45:59 +02:00
parent 2f4100ffec
commit 827bee8ef8
74 changed files with 460 additions and 460 deletions

View File

@@ -43,7 +43,7 @@ Find your project's ID in the **Settings** page.
Create a new file `lib/appwrite.js` to hold our Appwrite related code.
Only one instance of the `Client()` class should be created per app.
Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
Add the following code to it, replacing `<PROJECT_ID>` with your project ID.
```js
import { Client, Databases, Account } from "react-native-appwrite";
@@ -51,7 +51,7 @@ import { Client, Databases, Account } from "react-native-appwrite";
const client = new Client();
client
.setEndpoint("https://cloud.appwrite.io/v1")
.setProject("<YOUR_PROJECT_ID>") // Replace with your project ID
.setProject("<PROJECT_ID>") // Replace with your project ID
.setPlatform('com.example.idea-tracker');