Follow these instructions to be able to test database_builder_query locally, it does not require PostgreSQL to be installed on your machine
Download and install from Docker follow the instructions in its official documentation https://www.docker.com/
Once Docker is installed, you need to create an outbound network, for this I used the following command
docker network create -d bridge dart-netInside your project create a file docker-compose.yml
version: "3.5"
services:
db-dart:
image: postgres
volumes:
- dart-db:/var/lib/postgresql/dartbase
ports:
- "5442:5432"
environment:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: dartbase
networks:
- dart-net
volumes:
dart-db:
networks:
dart-net:
external: true
name: dart-net
If everything went well, upload your image with the command
docker compose upUse any client to connect, in our case we are using DBeaver
We provide these SQL files for you to perform all the tests of this nice package, you can also use your own databases