Configuring PostgreSQL, and defining the SQL entities There are several ways to install PostgreSQL database, however the easiest way is through docker[^1]. We’ll use a docker-compose file to configure all the aspects of this project. The Docker-compose file will eventually have 3 sections, each representing: PostgreSQL database PostgREST service Swagger OpenAPI service The base docker-compose file looks like this: version: '3' services: db: # PostgreSQL database config server: # PostgREST s...