Tags: tursodatabase/turso-cli
Tags
add AWS migration CLI command (#972) Add two group level commands: 1. `turso group aws-migration info <group-name>` - shows status of the group migration process 2. `turso group aws-migration start <group-name>` - start migration process for selected group 3. `turso group aws-migration abort <group-name>` - abort migration process for selected group
Add `turso db export` command (#973) This adds a `turso db export` command, which exports a Turso database to a local SQLite file. The export command does not generate a WAL file so the database is a snapshot of time at the beginning of the current generation, not the latest database version. You need to, therefore, sync the database using Turso SDK if you need the latest data. Example usage: 1. Export the `hello` database as `hello.db`: ``` turso db export hello ``` 2. Overwrite an existing database file: ``` turso db export hello --overwrite ``` 3. Generate metadata with the export: ``` turso db export hello --with-metadata ``` 4. Output `hello` database to the `world.db` file: ``` turso db export hello --output-file world.db ```
PreviousNext