This is how I'd organize a cross-language monorepo which handles all CI/CD concerns and enables developers to focus on the business solution. This currently has an api service (nestjs on node) & a frontend app (svelte + sapper) which uses SSR.
You'll need to have please.build installed.
I use Docker Desktop to run the app locally.
I use MicroK8S to run the app on Linux.
You'll need to install it and also enable the built-in registry to run the app, which can be done with microk8s enable registry
. ./template.envrc
to deploy the app, create the services
plz build //apps/...
plz run parallel //apps/api //apps/docs
Because the images need to be on the microk8s docker registry for this to work, we need to push the images manually. (need to try and automate this later)
plz run parallel //apps/api:api_push //apps/docs:documentation_push
kubectl apply -f ./.cicd # --> creates the kubernetes namespace
plz run parallel //apps/api/k8s:k8s_push //apps/docs/k8s:k8s_push
plz run parallel //apps/api/k8s:k8s_cleanup //apps/docs/k8s:k8s_cleanup
kubectl delete -f .cicd
use this command to forward the port from the documentation service
kubectl port-forward service/docs-svc -n $K8S_NAMESPACE 3000:80
you can navigate to http://localhost:8080
with microk8s on Linux, the services will directly be available on the NodePort so, no need to use port-forward.
You can get the port with
kubectl -n mrsauravsahu describe apps/docs-svc | grep NodePort