Docker
Run Docker Compose in a development mode
docker compose -f ./compose.dev.yaml up -d
This command will launch the applications:
- Provider: https://localhost:3000
- Client: https://localhost:3001
- API: http://localhost:4000
The page will reload if you make edits.
Run Docker Compose in a production mode
docker compose -f ./compose.prod.yaml up -d
This command will make a production build and launch applications:
- Provider: http://localhost:3000
- Client: http://localhost:3001
- API: http://localhost:4000