WHY: migrating from Supabase BaaS to self-hosted iloom backend (Go microservices) deployed on K3s. Supabase client and realtime subscriptions no longer applicable. HOW: - add src/api/ layer (client.ts, auth.ts, purchaser.ts, textile.ts, washing.ts, websocket.ts) targeting iloom-gateway REST endpoints - rewrite all hooks (usePlanData, useInventoryData, useDashboardData, useRealtime, etc.) to use new API client instead of Supabase queries - rewrite all page/component data fetching and mutations accordingly - delete src/supabase/client.ts, remove @supabase/supabase-js dep - add Dockerfile (multi-stage node build + nginx) and nginx.conf with reverse proxy to iloom-gateway for /api/ and /ws/ routes - adjust webpack.config.js for API_URL environment variable injection Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
360 B
Docker
13 lines
360 B
Docker
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
COPY iloom-flatten/package.json iloom-flatten/package-lock.json ./
|
|
RUN npm ci --legacy-peer-deps
|
|
COPY iloom-flatten/ .
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY iloom-flatten/nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 3015
|
|
CMD ["nginx", "-g", "daemon off;"]
|