Simple examples that help you get started with Appwrite + Kotlin (=❤️)
This is Appwrite server side integration with Kotlin. For Android integration please look at our Android playground and Android SDK
Appwrite playground is a simple way to explore the Appwrite API and Appwrite Kotlin SDK. Use the source code of this page to learn how to use different Appwrite Kotlin SDK features.
This playground doesn't include any Kotlin best practices, but rather intended to show some of the most simple examples and use cases of using the Appwrite API in your Kotlin application.
- A system with Kotlin 1.4+ or Docker installed.
- An Appwrite instance.
- An Appwrite project created in the console.
- An Appwrite API key created in the console.
- Clone this repository.
cd
into to repository.- Open the
src/main/kotlin/io/appwrite/playgroundforkotlin/Main.kt
file found in the cloned repository. - Copy your Project ID, endpoint and API key from Appwrite console into
Main.kt
- Run the playground:
Kotlin:
- Execute the command
sh gradlew run
Docker: - Execute the command
docker compose up
- Execute the command
- You will see the JSON response in the console.
When connecting to Appwrite from within Docker, localhost is the hostname for the container and not your local Appwrite instance. You should replace localhost with your private IP as the Appwrite endpoint's hostname. You can also use a service like ngrok to proxy the Appwrite API.
-
Database
- Create Collection
- List Collections
- Add Document
- List Documents
- Delete Document
- Delete Collection
-
Storage
- Create Bucket
- List Buckets
- Upload File
- List Files
- Delete File
- Delete Bucket
-
Users
- Create User
- List Users
- Delete User
-
Functions
- Create Function
- List Functions
- Delete Function
All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.
We truly ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.
For security issues, kindly email us [email protected] instead of posting a public issue in GitHub.
Join our growing community around the world! Follow us on Twitter, Facebook Page, Facebook Group or join our Discord Server for more help, ideas and discussions.