2ed7eee63d
- Add vercel.json to build only apps/web (fix Vercel build failure) - NestJS API: BlocksModule, BlocksController, BlocksService with Prisma 7 - PostgreSQL migration: Block model (path, version, isInPreview) - BlockMetaBar component: inline version edit, API fetch with offline fallback - New block components: CeoBlock, ContactFormsBlock, FooterBlock, NewsBlock, ReviewsBlock - PreviewClient: fetch isInPreview from API, block visibility toggle - Pages updated: hero, doctors, ceo, contact-forms, contact, news, reviews - docker-compose: PostgreSQL on port 5434 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
349 B
YAML
17 lines
349 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: brandbook_postgres
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: brandbook
|
|
POSTGRES_PASSWORD: brandbook
|
|
POSTGRES_DB: brandbook
|
|
ports:
|
|
- "5434:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|