Request for Guidance on Setting Up Development Environment #305
-
Hi, I've noticed that there isn't any documentation on how to set up optscale for development. Could anyone provide advice or instructions on how to properly configure the project for a development environment? Thanks in advance for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, so the way I have set up a dev environment for myself is (atleast for the ngui part) by making use of Steps to reproduce:
We use the |
Beta Was this translation helpful? Give feedback.
Hi, so the way I have set up a dev environment for myself is (atleast for the ngui part) by making use of
mirrord
. Mirrord creates a new pod in the kubernetes cluster that replicates the traffic going to a pod that you intend to develop (lets say the ngui pod) and sends that traffic to your locally running server. This way whatever changes you made to your backend will be reflected immediately how you would want it to while working locally without having to build the image everytime. It pulls the env variables from the pod and passes it to the local environment.Steps to reproduce:
Install mirrord from the link https://mirrord.dev/docs/overview/quick-start/
Now the issue is that the n…