Hello,
I have a database that is currently used in production with lots of data in it. I would like to create a dev database with the same content to test out some new features.
If the new features pan out, the dev DB will be marked as the prod_v2 the old prod_DB will be archived.
Is there a quick way to do this that does not involve reading each document from the prod db and then uploading it to the dev db ? There are many entries and it will take too long.
I tried to export the DB contents using the cli but I cannot find the right command to export all contents to a file.
Additionally, can I perform DB operations on the DB locally and then push the modified DB to the server ? It would be faster than sending millions of HTTP requests to a server.
Recommended threads
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...
- Query.search limitation
Since `string` is deprecated I used `varchar`, and now I cant use `Query.contains` , so I setup fulltext index and started using `Query.search` the issue is `Qu...