Initial commit: ANOUMA website with Payload CMS, WebRTC meetings, and booking system

- Next.js 16 App Router site with the ANOUMA design system
- Payload CMS (PostgreSQL) for offers, events, posts and page content
- WebRTC video-call system with custom signaling server
- SMTP email reminders and booking-request notifications
- Customer accounts, calendar-based availability, and booking workflow
This commit is contained in:
maro
2026-08-25 16:40:51 +02:00
commit 45261a0461
138 changed files with 23263 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
services:
postgres:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: anouma
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 10
# Optional: run the Next.js app in Docker too. For local development it's
# usually simpler to run `npm run dev` on the host against the Postgres
# container above (DATABASE_URI host: 127.0.0.1, as in .env.example).
# To run the whole stack in Docker instead, uncomment this service and set
# DATABASE_URI's host to `postgres` (the service name) in your .env file.
# app:
# build: .
# restart: unless-stopped
# ports:
# - "3000:3000"
# env_file:
# - .env
# depends_on:
# postgres:
# condition: service_healthy
volumes:
pgdata: