Hello everyone, I have app created with KMM, using...
# ktor
s
Hello everyone, I have app created with KMM, using Firebase as backend, but now want to create the backend with Ktor, is here and guide to migrate server side in KMM project?
c
Sounds like you’re starting from scratch? What features are you looking to replicate from FireBase?
s
Auth, Push Notifications, Realtime DB, Storage
c
Auth you can definitely do with Ktor pretty easily. Push notifications are a bigger issue, as it depends on your scale. I like OneSignal, and know the free tier offerings always change. Realtime DB can be done with Ktor and Redis. Storage meaning S3 style? Ktor definitely has support for uploading. A lot of this is in the Ktor documentation and sample code. Have you perused those resources?
s
@Sevak Tadevosyan May i know if you were able to successfully migrate atleast auth system to ktor ? I want to understand how difficult it is to integrate google auth in ktor backend with iOS, android and web (wasm) clients.