- Implemented a contact form with validation and submission functionality. - Added a dummy API endpoint for contact form submissions. - Integrated Axios for API requests and error handling. - Updated UI components for input handling and error display. - Added toast notifications for user feedback on form submission. - Included WhatsApp bubble component for enhanced user interaction. - Updated layout to include new contact page and components. - Added Docker support for development and production environments. - Created Makefile for easier deployment and management of Docker containers.
13 lines
267 B
YAML
13 lines
267 B
YAML
# Production
|
|
services:
|
|
app:
|
|
container_name: compro-mit-prod
|
|
image: compro-mit-prod
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${PORT_PROD:-3010}:3000"
|
|
logging:
|
|
driver: json-file
|
|
options: { max-size: "100m", max-file: "5" }
|