Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opatut/dbsnap
Command line utility to quickly snapshot and restore databases (for development)
https://github.com/opatut/dbsnap
Last synced: 14 days ago
JSON representation
Command line utility to quickly snapshot and restore databases (for development)
- Host: GitHub
- URL: https://github.com/opatut/dbsnap
- Owner: opatut
- License: mit
- Created: 2018-02-07T10:16:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-19T14:55:44.000Z (almost 6 years ago)
- Last Synced: 2023-03-11T13:34:53.360Z (almost 2 years ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dbsnap
## Installation
1. Clone to somewhere.
2. `pip install --user -r requirements.txt`
3. Symlink `dbsnap.py` to your $PATH, e.g. `ln -s $PWD/dbsnap.py /usr/local/bin/dbsnap`## Usage
1. Set your current database using `dbsnap connect`, e.g.
```bash
dbsnap connect mysql://user:password@localhost/dbname
```Currently, only `mysql` is supported. If you leave the password empty (`mysql://user:@host...`), you'll be prompted for it. If you leave out the colon (`mysql://user@host...`), no password will be used.
The full string (including password, if any), will be stored locally in a file (`~/.local/share/dbsnap/current`).
2. Create a snapshot:
```bash
dbsnap snap
```3. Break your database.
4. Restore your snapshot:```bash
dbsnap restore
```The `restore` command finds the latest snapshot for the current database. You can pass a name for the snapshot file to `snap` and `restore` commands to use a different one. Use `dbsnap list` to see available snapshots of the current database, and `dbsnap clear` to remove all of them.
## License
This work is licensed under the MIT License. See `LICENSE` for details.