Change port to 3011
This commit is contained in:
@@ -8,7 +8,7 @@ PostgreSQL database and web dashboard for a car service workshop, managed with D
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
Open the web dashboard at [http://localhost:3000](http://localhost:3000).
|
||||
Open the web dashboard at [http://localhost:3011](http://localhost:3011).
|
||||
|
||||
The dashboard's **Vehicles** view provides a dedicated vehicle register containing make, model, model year, engine, transmission, fuel type, color, VIN, license plate, mileage, owner, and service-record count. The **Service records** form stores these vehicle details and can autofill them, along with the customer, when an existing VIN or license plate is entered. Customer contact information can also be autofilled by customer email or by a unique customer name. Names are not unique, so duplicate names are allowed; when a name matches multiple customers, the form asks for an email instead of choosing one incorrectly. It supports adding, listing, and editing service records with service date, VIN, license plate number, car mileage, customer, technician, complaint, and status. Adding a record creates or updates the linked customer and vehicle, technician, and service order in one transaction.
|
||||
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ services:
|
||||
PORT: 3000
|
||||
DATABASE_URL: postgresql://${POSTGRES_USER:-car_service_app}:${POSTGRES_PASSWORD:-change-me-in-production}@car-service-db:5432/${POSTGRES_DB:-car_service}
|
||||
ports:
|
||||
- "${WEB_PORT:-3000}:3000"
|
||||
- "${WEB_PORT:-3011}:3000"
|
||||
depends_on:
|
||||
car-service-db:
|
||||
condition: service_healthy
|
||||
|
||||
Reference in New Issue
Block a user