CLI for backing up remote PostgreSQL databases locally or to AWS S3.
Pass in a full database URL, the storage driver, and destination.
S3 Example with bucket name:
$ pgbackup postgres://[email protected]:5432/db_one --driver s3 backups
Local Example with local path:
$ pgbackup postgres://[email protected]:5432/db_one --driver local /var/local/db_one/backups
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 .
Follow these steps to start developing with this project:
- Ensure
pip
andpipenv
are installed - Clone repository:
git clone [email protected]:jos3neto/pgbackup
cd
into the repository- Activate virtualenv:
pipenv shell
- Install dependencies:
pipenv install