docker compose up -dcd backend
make build
make run- Open localhost:4000
- On the macOS with Docker Desktop
--network hostwill not work properly - So, instead of
docker run --network host, usedocker run -p 4000:4000for the backend - To access the database in the backend container, use
host.docker.internal:5432instead oflocalhost:5432 - Check out required changes:
fix: macos --network host issue
cd frontend
make build
make run- Open localhost:3000, you should see the following UI:
