go get github.com/textwire/lspThe Textwire LSP project is licensed under the MIT License and is free to use, modify, and distribute.
With Podman:
podman-compose buildWith Docker:
docker compose buildAfter the image is build, you can run a container from that image. Run this command to create a container:
With Podman:
podman-compose run --rm app shWith Docker:
docker compose run --rm app shInside of the container, you will be able to run commands like make test and make build.
When you are done working on a project, you can remove the container to cleanup after yourself:
With Podman:
podman-compose downWith Docker:
docker compose downTo publish a new version of LSP, you need to use tags. As soon as you push a new tech to GitHub, it will run a build that will create a release for this new version.