backupdb
An open-source CLI tool for backing up RDS(PostgreSQL) Locally or to Amazon S3 bucket
Usage
You will pass in the following on the command line:
- The CLI command
backup - The
database URLyou need to connect to - The
storage driver (S3 or Local) - The
destination (S3 bucket or local path)
Installation
$ pip install backupdb
Syntax
$ backupdb postgres://[USERNAME]:[PASSWORD]@[SERVER_IP:80/<db_name> --driver <driver_type> <destination>
Example usage for S3 backup
$ backupdb postgres://[USERNAME]:[PASSWORD]@[SERVER_IP:80/<db_name> --driver s3 mybucket01
Example usage for Local backup
$ backupdb postgres://[USERNAME]:[PASSWORD]@[SERVER_IP:80/<db_name> --driver local /var/local/mybackup.sql
Installation From Source
To install the package after you've cloned the repository, you'll want to run the following command from within the project directory:
$ pip install --user -e .
Preparing for Development
Follow these steps to start developing with this project:
- Ensure
pipandpipenvare installed - Clone repository:
git clone [email protected]:sharhan-alhassan/backupdb cdinto the repository- Activate virtualenv
source /venv/bin/activate - Install dependencies:
pip install -e .orpip install -r requirements