- Docker and Docker Compose installed on your machine.
-
Open a terminal in the project root.
-
Run the following command to build and start the services:
docker compose up --build
(Note: If you have an older version of Docker, you might need
docker-compose up --build) -
Access the application:
- Frontend: http://localhost:8080
- Backend API: http://localhost:3001
Press Ctrl+C in the terminal or run:
docker compose down- The Backend is mapped to port
3001on your host machine because the frontend currently expects the API athttp://localhost:3001/api. - The Frontend can be accessed at port
8080.