Dev & Prod mode
Access services and the difference between both modes.
how to access different components in dev mode vs in prod mode
Enable DEV mode
To enable dev mode and as the Platform CLI docs mentioned, all you need to do is to add --dev if it is not already there to the commands as follows:
./deploy-local.sh init --dev
or
./deploy-local-combo.sh init --dev
Accessible services in DEV mode locally
Running in Dev mode locally will allow you to access the following services:
Openhim:
http://127.0.0.1:9000orhttp://localhost:9000Kafdrop:
http://127.0.0.1:9013orhttp://localhost:9013Clickhouse:
http://127.0.0.1:8124/playorhttp://localhost:8124/playSuperset:
http://127.0.0.1:8089orhttp://localhost:8089
DEV vs PROD
The following services will not be accessible in Prod mode:
Kafdrop
Clickhouse
Last updated