An application to generate bash
scripts from SQL scripts for execution on machines running PostgreSQL
,
whether inside or outside a Docker
container.
Because you need an easy-to-use and a polished solution for a mundane task.
Plus you're less likely to make a mistake, as all bash
parts of the script have been thoroughly tested.
Download latest release from Releases page.
- Clone the repo:
git clone https://github.com/gkeep/script-creator
- Create a
virtualenv
python3 -m virtualenv venv
- Initialize the Python virtual environment
source venv/bin/activate
(command may differ depending on your OS and shell) - Install python requirements
pip install -r requirements.txt
(userequirements_win.txt
on Windows)
Now you can build the application binary or run it from your IDE of choice.
Building the binary (Linux & Windows)
make build_linux
or make build_windows
, depending on your OS