feat: remove unused code (#260)

Remove a lot of unused code, related to:

* **Support for older versions of `elixir`**:
  * Remove `openssl` 1.1
  * Remove `elixir-ls` repository
  * Remove script to install pinned versions of `elixir-ls`
* **Unused tools from `mise`**:
   * `aqua:CircleCI-Public/circleci-cli`: This isn't my `ci/cd` service of choice.
   * `aqua:xo/usql`: Even though this is interesting, I mainly interact with the default tooling of the databases.
   * `go:github.com/bloznelis/typioca`: I go for the `tukai` or `ttyper` to improve my keyboard profecience
   * `pipx:vectorcode`: I've never really used it.
     * In this case, I also removed the `neovim` plugin and `mcp` server.
   * `ubi:block/goose`: I go for the `opencode`, or the specialized tools, such as `claude-code` or `gemini-cli`.
   * `ubi:supabase/cli`: I've never really used it.
   * `poetry`: I changed to `uv`.

Reviewed-on: #260
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
This commit is contained in:
2025-07-18 13:44:50 +00:00
committed by João Paulo Dubas
parent 65f354117c
commit c815282fed
7 changed files with 8 additions and 127 deletions

View File

@@ -153,24 +153,6 @@ ENV XDG_CACHE_HOME ${HOME}/.cache
ENV STARSHIP_CONFIG ${XDG_CONFIG_HOME}/starship/config.toml
ENV PATH ${LOCAL_BIN_HOME}:$PATH
# NOTE (jpd): the section below exists mainly to handle a project running elixir 1.11.
# It allows the usage of openssl 1.1 and a compatible elixir-ls.
# configure openssl 1.1
# this is needed to compile older erlang versions
# example: KERL_CONFIGURE_OPTIONS="-with-ssl=$HOME/.local/lib/ssl" mise install
RUN mkdir -p ${HOME}/.local/src \
&& cd ${HOME}/.local/src \
&& curl -L https://www.openssl.org/source/openssl-1.1.1m.tar.gz | tar -xz \
&& cd openssl-1.1.1m \
&& ./config --prefix=${HOME}/.local/lib/ssl --openssldir=${HOME}/.local/lib/ssl shared zlib \
&& make \
# && make test \
&& make install
# fetch elixir-ls to install custom releases
RUN git clone https://github.com/elixir-lsp/elixir-ls.git ${LOCAL_SRC_HOME}/elixir-ls
# command line utilities
ENV MISE_ENV_FILE .env
RUN curl https://mise.jdx.dev/install.sh | sh \