- Remove apps/dispatch/ (100% replaced by ops dispatch module, unmaintained) - Commit services/targo-hub/lib/ (24 modules, 6290 lines — was never tracked) - Commit services/docuseal + services/legacy-db docker-compose configs - Extract client app composables: useOTP, useAddressSearch, catalog data, format utils - Refactor CartPage.vue 630→175 lines, CatalogPage.vue 375→95 lines - Clean hardcoded credentials from config.js fallback values - Add client portal: catalog, cart, checkout, OTP verification, address search - Add ops: NetworkPage, AgentFlowsPage, ConversationPanel, UnifiedCreateModal - Add ops composables: useBestTech, useConversations, usePermissions, useScanner - Add field app: scanner composable, docker/nginx configs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
483 B
YAML
25 lines
483 B
YAML
services:
|
|
legacy-db:
|
|
image: mariadb:10.11
|
|
container_name: legacy-db
|
|
restart: unless-stopped
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: VD67owoj
|
|
MARIADB_DATABASE: gestionclient
|
|
MARIADB_USER: facturation
|
|
MARIADB_PASSWORD: VD67owoj
|
|
volumes:
|
|
- legacy-data:/var/lib/mysql
|
|
ports:
|
|
- "127.0.0.1:3307:3306"
|
|
networks:
|
|
- erpnext_erpnext
|
|
mem_limit: 1g
|
|
|
|
volumes:
|
|
legacy-data:
|
|
|
|
networks:
|
|
erpnext_erpnext:
|
|
external: true
|