├── .gitignore ├── LICENSE ├── README.md ├── bin └── pgrepup ├── pgrepup.exe ├── pgrepup ├── __init__.py ├── cli.py ├── commands │ ├── __init__.py │ ├── check.py │ ├── config.py │ ├── fix.py │ ├── setup.py │ ├── start.py │ ├── status.py │ ├── stop.py │ └── uninstall.py ├── config.py ├── helpers │ ├── __init__.py │ ├── crypt.py │ ├── database.py │ ├── docopt_dispatch.py │ ├── operation_target.py │ ├── replication.py │ ├── ui.py │ └── utils.py └── version.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/README.md -------------------------------------------------------------------------------- /bin/pgrepup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/bin/pgrepup -------------------------------------------------------------------------------- /pgrepup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup.exe -------------------------------------------------------------------------------- /pgrepup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/__init__.py -------------------------------------------------------------------------------- /pgrepup/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/cli.py -------------------------------------------------------------------------------- /pgrepup/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/__init__.py -------------------------------------------------------------------------------- /pgrepup/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/check.py -------------------------------------------------------------------------------- /pgrepup/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/config.py -------------------------------------------------------------------------------- /pgrepup/commands/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/fix.py -------------------------------------------------------------------------------- /pgrepup/commands/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/setup.py -------------------------------------------------------------------------------- /pgrepup/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/start.py -------------------------------------------------------------------------------- /pgrepup/commands/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/status.py -------------------------------------------------------------------------------- /pgrepup/commands/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/stop.py -------------------------------------------------------------------------------- /pgrepup/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/commands/uninstall.py -------------------------------------------------------------------------------- /pgrepup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/config.py -------------------------------------------------------------------------------- /pgrepup/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgrepup/helpers/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/crypt.py -------------------------------------------------------------------------------- /pgrepup/helpers/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/database.py -------------------------------------------------------------------------------- /pgrepup/helpers/docopt_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/docopt_dispatch.py -------------------------------------------------------------------------------- /pgrepup/helpers/operation_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/operation_target.py -------------------------------------------------------------------------------- /pgrepup/helpers/replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/replication.py -------------------------------------------------------------------------------- /pgrepup/helpers/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/ui.py -------------------------------------------------------------------------------- /pgrepup/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/helpers/utils.py -------------------------------------------------------------------------------- /pgrepup/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/pgrepup/version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtshome/pgrepup/HEAD/setup.py --------------------------------------------------------------------------------