d960e37aa8
- Updated translations for German and English to reflect changes in deposit terminology. - Modified index.html to implement a new booking flow with a step-by-step wizard for vehicle selection, contact details, and ID verification. - Added CSS styles for the new booking flow interface, including responsive design and improved input styles. - Created new database policies and tables for handling customer and lead attachments during the booking process. - Introduced weekend pricing and daily KM limits for vehicles in the database schema. - Implemented email-based customer upsert functionality to streamline lead qualification and attachment transfer. Co-authored-by: Copilot <copilot@github.com>
29 lines
789 B
YAML
29 lines
789 B
YAML
services:
|
|
db:
|
|
volumes:
|
|
- ./data/db:/var/lib/postgresql/data
|
|
- ./supabase/migrations/00-run-init.sh:/docker-entrypoint-initdb.d/00-run-init.sh:ro
|
|
- ./supabase/migrations/01-init.sql:/sql/01-init.sql:ro
|
|
|
|
storage:
|
|
volumes:
|
|
- ./data/storage:/var/lib/storage
|
|
|
|
imgproxy:
|
|
volumes:
|
|
- ./data/storage:/var/lib/storage
|
|
|
|
post-init:
|
|
volumes:
|
|
- ./supabase/migrations/post-boot.sql:/sql/post-boot.sql:ro
|
|
- ./supabase/migrations/02-leads.sql:/sql/02-leads.sql:ro
|
|
- ./supabase/migrations/03-booking-flow.sql:/sql/03-booking-flow.sql:ro
|
|
|
|
kong:
|
|
volumes:
|
|
- ./supabase/kong.yml:/home/kong/kong.yml:ro
|
|
|
|
web:
|
|
volumes:
|
|
- ./frontend:/usr/share/nginx/html
|
|
- ./frontend/nginx.conf:/etc/nginx/conf.d/default.conf:ro |