burakcbdnOriginal post
Rank 1: Thread
Hello, I wanted to ask if it is possible to create remote config-like structure with appwrite.
For example I have some specific enum attribute, I want these enum values to be changable with remote config.
The solutions that I think of were
- using function to fetch enum values
- creating a collection just for this purpose
- using external remote config service
Do you have any suggestion or does appwrite has some feature that might help me?
Summary
There are several ways to achieve a remote config-like structure with Appwrite.
- If everyone needs the same config, you can use a public collection.
- If different users need different values, consider using an external remote config service directly.
You can also fetch enum values using a function or create a collection specifically for this purpose.
Overall, it is recommended to explore external remote config services or use functions to fetch the required values.