Phase 2: scaffold Waiter PWA — React+Vite, PWA manifest, all pages and components

This commit is contained in:
2026-04-20 12:03:26 +03:00
parent 803358e52c
commit 36cc67dbbc
30 changed files with 8129 additions and 0 deletions

View File

@@ -12,3 +12,17 @@ services:
- ./logo.png:/app/logo.png:ro
extra_hosts:
- "host.docker.internal:host-gateway"
waiter_pwa:
image: node:20-alpine
working_dir: /app
volumes:
- ./waiter_pwa:/app
ports:
- "5173:5173"
command: sh -c "npm install --legacy-peer-deps && npm run dev -- --host 0.0.0.0"
env_file:
- ./waiter_pwa/.env
depends_on:
- backend
restart: unless-stopped