Minimalist and concise. It's a conversation among senior software architects. I'll explicitly ask for deep explanations.
- This is a Spotify's Backstage instance (v1.38.0)
- Monorepo managed with Yarn Workspaces
| INSERT INTO "ranks" VALUES | |
| ('A'), ('K'), ('Q'), ('J'), ('1'), ('2'), ('3'), ('4'), ('5'), ('6'), ('7'), ('8'), ('9'), ('10'); | |
| INSERT INTO "suits" VALUES | |
| ('♥️'), ('♠️'), ('♣️'), ('♦️'); | |
| INSERT INTO "brands" VALUES | |
| ('b1'), ('b2'); |
| # Install Docker & Container runtime | |
| brew install docker-credential-helper docker | |
| brew install colima | |
| docker -v | |
| # Install Docker-Compose | |
| brew install docker-compose | |
| mkdir -p ~/.docker/cli-plugins | |
| ln -sfn /opt/homebrew/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose | |
| docker compose -v |
| #!/bin/bash | |
| # Default values | |
| POSTGRES_PORT=13378 | |
| PGMATE_PORT=1337 | |
| VERSION="latest" | |
| SECRET="pgmate" | |
| PGSTRING="postgres://postgres:postgres@172.17.0.1:${POSTGRES_PORT}/postgres" | |
| # Function to display usage |