Sidekick is an Elixir application (daemon) for the Tuist server to run tasks (e.g. virtualized operation) in other environments.
The server communicates with sidekick
using the OTP protocol.
Add the dependency to your mix.exs
file:
defp deps do
[
# Other dependencies
{:sidekick, git: "https://github.com/tuist/sidekick.git", tag: "0.1", runtime: false}
]
end
- Git clone the repo:
[email protected]:tuist/sidekick.git
. - Install dependencies with
mise install
. - Run the tests with
mix test