Crates.io | pentheus |
lib.rs | pentheus |
version | |
source | src |
created_at | 2025-01-02 17:03:19.657684+00 |
updated_at | 2025-01-03 19:15:29.077331+00 |
description | Your Database Guardian, Set up in Minutes |
homepage | |
repository | https://github.com/Clivern/Pentheus |
max_upload_size | |
id | 1501701 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Your Database Guardian, Set up in Minutes.
Pentheus — your go-to command-line buddy for keeping your databases safe and sound! Built with Rust, this nifty tool makes backing up and storing your SQLite, MySQL, and PostgreSQL databases super easy. Let’s make sure your data is always protected!
First, you’ll want to install pentheus
using Cargo
. Open your terminal and run:
$ cargo install pentheus
Next, create a TOML
config file to tell pentheus
how to back up your databases. Here’s a quick example to get you rolling:
# Database backups
[database]
[database.sqlite_db_01]
driver = "sqlite"
path = "/opt/backup/app1-db.sqlite"
[database.my_mysql_db_01]
driver = "mysql"
host = "mysql_host"
port = 3306
user = "mysql_user"
password = "mysql_password"
database = "my_mysql_db"
[database.my_postgres_db_01]
driver = "postgres"
host = "postgres_host"
port = 5432
user = "postgres"
password = "postgres_password"
database = "my_postgres_db"
# Backup storage
[storage]
[storage.local_store]
driver = "local"
path = "/path/to/local/backup"
compress = "zip"
[storage.s3_store]
driver = "s3"
bucket = "my-backup-bucket"
region = "us-east-1"
access_key = "my_access_key"
secret_key = "my_secret_key"
compress = "none"
# Cron Jobs
[cron]
[cron.sqlite_db_01_cron]
schedule = "5 4 * * *"
database = "sqlite_db_01"
storage = "local_store"
# Backups state file
[state]
storage = "s3_store"
path = "/state.json"
For transparency into our release cycle and in striving to maintain backward compatibility, Pentheus is maintained under the Semantic Versioning guidelines and release process is predictable and business-friendly.
See the Releases section of our GitHub project for changelogs for each release version of Pentheus. It contains summaries of the most noteworthy changes made in each release.
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/pentheus/issues
If you discover a security vulnerability within Pentheus, please send an email to hello@clivern.com
We are an open source, community-driven project so please feel free to join us. see the contributing guidelines for more details.
© 2025, clivern. Released under MIT License.
Pentheus is authored and maintained by @Clivern.