chore: add official supabase self-host stack

This commit is contained in:
Philipp
2026-06-09 21:58:38 +02:00
parent 206dc48403
commit fd50c05873
61 changed files with 10420 additions and 13 deletions
+4 -3
View File
@@ -3,17 +3,18 @@ SHELL := /bin/sh
GOCACHE ?= $(CURDIR)/.tmp/go-build
GO := env GOCACHE=$(GOCACHE) go
COMPOSE := docker compose
SUPABASE_DIR := deploy/supabase
.PHONY: dev dev-down dev-logs migrate test lint build frontend-build verify clean
dev:
@echo "Dev infrastructure is not configured yet. Next step: official Supabase self-host stack."
cd $(SUPABASE_DIR) && $(COMPOSE) up -d
dev-down:
@echo "No dev infrastructure is configured."
cd $(SUPABASE_DIR) && $(COMPOSE) down
dev-logs:
@echo "No dev infrastructure is configured."
cd $(SUPABASE_DIR) && $(COMPOSE) logs -f
migrate:
@echo "No migrations configured yet. E2-T01 will wire golang-migrate."