Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1012 Bytes

File metadata and controls

28 lines (19 loc) · 1012 Bytes

OCaml language server

This folder contains the deployment files for the OCaml language server.

🚨 Warning: This language server is experimental. Please read about the caveats before enabling it. 🚨

You can enable it by:

  1. Append the kubectl apply command for the OCaml language server deployment to kubectl-apply-all.sh.

    echo kubectl apply --prune -l deploy=xlang-ocaml -f configure/experimental/ocaml --recursive >> kubectl-apply-all.sh
  2. Adding the following environment variables to the lsp-proxy deployment to make it aware of the OCaml language server's existence.

    # base/lsp-proxy/lsp-proxy.Deployment.yaml
    env:
      - name: LANGSERVER_OCAML
        value: tcp://xlang-ocaml:8080
  3. Apply your changes to lsp-proxy and the OCaml language server to the cluster.

    ./kubectl-apply-all.sh