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:9000
or
http://localhost:9000
Kafdrop:
http://127.0.0.1:9013
orhttp://localhost:9013
Clickhouse:
http://127.0.0.1:8124/play
orhttp://localhost:8124/play
Superset:
http://127.0.0.1:8089
orhttp://localhost:8089
DEV vs PROD
The following services will not be accessible in Prod mode:
Kafdrop
Clickhouse
Last updated