- Implemented getWarehouseById method in warehouseService to fetch warehouse details by ID. - Added new types for warehouse inventory management in warehouse.d.ts and warehouse.inventory.d.ts. - Created WarehouseAddInventory.vue component for handling inventory entries with serial number management. - Developed inventoryWarehouseServices for adding inventory through API. - Updated router to include the new inventory management component. - Added Docker configuration files for production deployment. - Created Nginx configuration for serving the application. - Added .dockerignore and .env.production for environment-specific settings.
23 lines
422 B
Markdown
23 lines
422 B
Markdown
# Estructura del Proyecto - GOLS Control Frontend
|
|
|
|
## Docker (Producción)
|
|
|
|
```bash
|
|
# 1. Configurar
|
|
cp .env.production .env
|
|
|
|
# 2. Levantar
|
|
docker-compose up -d
|
|
|
|
# 3. Verificar en http://localhost
|
|
```
|
|
|
|
Ver [DOCKER.md](DOCKER.md) para más detalles.
|
|
|
|
## Notas
|
|
|
|
- Los componentes de PrimeVue se auto-importan
|
|
- TypeScript configurado con strict mode
|
|
- Tailwind CSS v4 integrado
|
|
- Variables CSS personalizadas en `main.css`
|