Livrare Lot 3 (Frontend): aplicație web, aplicație mobilă Android, extensie browser
- Surse complete web (React/Vite) + mobil (React Native/Expo) + extensie (MV3) - Documentație de livrare: ghid utilizare, matrice trasabilitate cerințe, raport testare furnizor - Artefacte binare: imagine Docker didi-frontend:lot3-1.0, APK, extensie v3.2.6 + SHA256SUMS - Configurare adresă platformă externalizată (build args / .env / config.js) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
commit
cec967f953
321 changed files with 80506 additions and 0 deletions
30
docker-compose.local.yml
Normal file
30
docker-compose.local.yml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# DiDi Frontend — deployment local pe serverul de integrare (10.11.10.18)
|
||||
# Build: docker build --build-arg VITE_API_URL= --build-arg VITE_KEYCLOAK_URL=https://10.11.10.18/auth -t didi-frontend:local ./web
|
||||
# Run: docker compose -f docker-compose.local.yml up -d
|
||||
name: didi-frontend
|
||||
|
||||
services:
|
||||
didi-frontend:
|
||||
image: didi-frontend:local
|
||||
container_name: didi-frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "0.0.0.0:80:80"
|
||||
- "0.0.0.0:443:443"
|
||||
volumes:
|
||||
# Pachetul de livrare (imagine docker salvată, APK, extensie, README, SHA256SUMS),
|
||||
# servit la /downloads/livrare/ — montat de pe host ca tar-ul imaginii să fie
|
||||
# întotdeauna exact imaginea care rulează (nu poate fi copt în propria imagine).
|
||||
- /home/topclossers/didi-lot3-livrare:/usr/share/nginx/html/downloads/livrare:ro
|
||||
networks:
|
||||
- didi-network
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://127.0.0.1/health"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
|
||||
networks:
|
||||
didi-network:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue