···26262727Your choices are saved so next time you just press Enter to relaunch with the same settings.
28282929+#### Custom Ports
3030+3131+By default the wizard uses ports 8003 (gRPC), 8080 (CDN), and 3000 (auth). Override any of them with flags:
3232+3333+```bash
3434+go run ./cmd/wizard --grpc-port 9003 --cdn-port 9080
3535+```
3636+3737+| Flag | Default | Description |
3838+| ------------- | ------- | ---------------- |
3939+| `--grpc-port` | `8003` | gRPC server port |
4040+| `--cdn-port` | `8080` | CDN server port |
4141+| `--auth-port` | `3000` | Auth server port |
4242+4343+Custom ports are saved to `.wizard.json` alongside your other settings. On the next run the saved ports are reused automatically — no need to pass the flags again. If you later pass different port flags, the wizard warns you that the ports changed and asks for confirmation before continuing.
4444+2945### Regenerate protobuf stubs
30463147```bash