Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 638 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 638 Bytes

Flowdesk data technical tests

Set-up

You'll need to install Docker for deploying a local PostgreSQL db pre-populated with the 2 tables, as well as a PostgreSQL client to manipulate the data.

Deploy the postgres with

docker compose -f deploy/docker-compose.yaml up --force-recreate --remove-orphans --build

Interact with the data with psql

brew install postgresql
docker exec -it flowdesk-postgresql psql --user flowdesk
select * from trades;
select * from indexes;

Clean-up workspace with

docker compose -f deploy/docker-compose.yaml down -v