Crates.io | refuel |
lib.rs | refuel |
version | 0.1.3 |
source | src |
created_at | 2024-05-17 20:27:05.740946 |
updated_at | 2024-05-30 16:43:48.605922 |
description | A simple diesel postgres migrator that uses TOML files |
homepage | |
repository | https://github.com/davidkurilla/refuel.git |
max_upload_size | |
id | 1243655 |
size | 70,397 |
refuel
is a simple diesel Postgres migration tool. It is designed to simply running a Postgres database migration with diesel.
refuel
can be installed using cargo
cargo install refuel
Using refuel
is simple. All you need to do is run the following command.
refuel --toml-file [path/to/TOML/file]
provide refuel
with a TOML file containing the following keys:
username = "your_username"
password = "your_password"
dbname = "your_db_name"
Simply run the command and let refuel
handle the rest.