- 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.
17 lines
327 B
YAML
17 lines
327 B
YAML
services:
|
|
controls-front:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
VITE_API_URL: ${VITE_API_URL}
|
|
container_name: controls-front-prod
|
|
ports:
|
|
- "${APP_PORT}:80"
|
|
networks:
|
|
- controls-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
controls-network:
|
|
driver: bridge |