chore: convert submodules to standard directories for true monorepo structure

This commit is contained in:
2026-05-13 14:54:23 -07:00
parent 4339da259c
commit abf9bf89c2
761 changed files with 133928 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Local-only Postgres for `next dev` + NextAuth (Prisma). Not for production.
# Usage:
# docker compose -f docker-compose.local-db.yml up -d
# DATABASE_URL=postgresql://vibn:vibn@localhost:5433/vibn npx prisma db push
services:
postgres:
image: postgres:16-alpine
ports:
- "5433:5432"
environment:
POSTGRES_USER: vibn
POSTGRES_PASSWORD: vibn
POSTGRES_DB: vibn
volumes:
- vibn_pg_local:/var/lib/postgresql/data
volumes:
vibn_pg_local: