You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
425 B
425 B
Hacking
1. Setting up development environment
Expects a Postgres database with the following setup:
- user = postgres
- password = password
- 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