Vincent (Wen Yu) Ge
Vincent (Wen Yu) Ge
Node: ```js const sdk = require('node-appwrite'); const fs = require('fs'); // Init SDK const client = new sdk.Client(); const storage = new sdk.Storage(client); client .setEndpoint('https://demo.appwrite.io/v1') // Your API Endpoint .setProject('appwrite-bot')...
Ruby: ```ruby require 'appwrite' client = Appwrite::Client.new InputFile = Appwrite::InputFile client .set_endpoint('https://demo.appwrite.io/v1') # Your API Endpoint .set_project('appwrite-bot') # Your project ID .set_key("") storage = Appwrite::Storage.new(client) response = storage.create_file(bucket_id: 'bucket', file_id:...
SWIFT ```swift import Appwrite func main() async throws { let client = Client() .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID let storage = Storage(client) let file =...
Kotlin ```kt import io.appwrite.Client import io.appwrite.models.InputFile import io.appwrite.services.Functions suspend fun main() { val client = Client(context) .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID val functions = Functions(client)...
Deno ```js import * as sdk from "https://deno.land/x/appwrite/mod.ts"; // Init SDK let client = new sdk.Client(); let functions = new sdk.Functions(client); client .setEndpoint('https://demo.appwrite.io/v1') // Your API Endpoint .setProject('appwrite-bot') // Your...
DART ```dart // import 'dart:io'; // import 'package:dart_appwrite/dart_appwrite.dart'; // // void main() { // Init SDK // Client client = Client(); // Storage storage = Storage(client); // // client //...
Hi there, With the new Appwrite CLI, you can in fact clone collections and functions with their name, permission configuration, and schema copied. All the relevant information can be set...
Yeah @letsintegreat This is an amazing PR. Would love @lohanidamodar to take a look here, too. I looked through the code base quickly. I might point out that it looks...
> @gewenyu99 Thanks for suggesting the changes! I have fixed the usage of Client in this commit - [letsintegreat/Almost-Instagram@94d627f](https://github.com/letsintegreat/Almost-Instagram/commit/94d627f2628e04ec088a944f28cb3230803e734d) > > Now it is initialized only once. Kindly review now,...
Let me help you out by requesting reviews from our Flutter experts in case they didn't see this yet :)