This repository has been archived on 2022-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
payments/HACKING.md

425 B

Hacking

1. Setting up development environment

Expects a Postgres database with the following setup:

  1. user = postgres
  2. password = password
  3. database name = password

The following Docker command will download and run Postgres with the above mentioned configuration

export db=z-payments-postgress && \
docker create --name $db -e POSTGRES_PASSWORD=password -p 5432:5432 postgres  && docker start $db