A command line application for PostgreSQL synchronization.
hlps is a Rust-based command line tool designed for high-level PostgreSQL database synchronization operations.
The application uses a settings.toml file to store configuration. The default configuration includes:
[remote_database]
host = "localhost"
user = "postgres"
port = 5432
pgpass_path = "~/.pgpass"# Run with default settings.toml
./hlps
# Run with custom configuration file
./hlps --config /path/to/config.toml
# Run with verbose output
./hlps --verbose
# Show help
./hlps --help- Rust (latest stable version)
- PostgreSQL connection details configured in settings.toml
cargo build --release