wip: currently rewriting the project as a full stack application tangled.org/kacaii.dev/sigo
gleam

:truck: use `.yml` instead of `.yaml`

+21
+11
.justfiles/docker.just
··· 9 9 tag_name := "latest" 10 10 username := "kacaii" 11 11 12 + default: 13 + just --list docker 14 + 12 15 #  Run the application container 13 16 run-application-container: 14 17 {{ docker }} run \ ··· 20 23 21 24 #  Build, Tag and Push your app 22 25 shipment: build-image tag-image push-image 26 + 27 + #  Start all containers 28 + compose-up: 29 + {{ docker }} compose up -d 30 + 31 + #  Stop all containers 32 + compose-down: 33 + {{ docker }} compose down 23 34 24 35 #  Build Docker image 25 36 [no-cd]
+3
.justfiles/postgres.just
··· 8 8 postgres_db := env("POSTGRES_DB") 9 9 port := "5432" 10 10 11 + default: 12 + just --list db 13 + 11 14 #  Start the Postgres container in the Background 12 15 run-database-container: 13 16 {{ docker }} run --rm --name postgres \
compose.yaml compose.yml
+7
justfile
··· 19 19 #  Rebuild the database empty 20 20 rebuild-empty: 21 21 just db::rebuild_empty 22 + 23 + up: 24 + just docker::compose-up 25 + 26 + down: 27 + just docker::compose-down 28 +