Make dashboard app port configurable #4136
Labels
backend:server
Issues relating to Cube Core's Server
enhancement
New feature proposal
help wanted
Community contributions are welcome.
https://github.com/cube-js/cube.js/blob/7d2cf5469ea62fe20f18fc60044e0fd88d233ecd/packages/cubejs-server-core/src/core/server.ts#L414
Apparently, the dashboard app port is hardcoded which is a bummer if one already has an app running on port
3000
.Manually "hacking" the port in the
package.json
to"react scripts start --port 3111"
does start the dashboard on the other port but the start command will be messy as my logs show:Also it doesn't help much as the dashboard while starting on port
3111
won't be connected to the playground.This means one always has to reconfigure a potentially already configured application to get the dashboard app up and running and working with the playground.
Is there any specific reason why it's implemented like that or am I missing something here?
The text was updated successfully, but these errors were encountered: