Skip to content

Commit

Permalink
docs: add installation guides for asdf and Mise (#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtweeman authored Sep 23, 2024
1 parent fe90ea3 commit 64319be
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions website/docs/quick-start/install-atmos.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,64 @@ Atmos has native packages for macOS and every major Linux distribution. We also
when running `atmos version`.
</TabItem>

<TabItem value="asdf" label="asdf">
#### Install with asdf

Install plugin dependencies as listed in [asdf-atmos repository](https://github.com/cloudposse/asdf-atmos#dependencies):

```shell
apt-get update && apt-get install -y bash curl tar
```

Install the plugin:

```shell
asdf plugin add atmos https://github.com/cloudposse/asdf-atmos.git
```

Install a specified version:

```shell
asdf install atmos <LatestRelease />
```
Alternatively, create a `.tool-versions` file in your project to specify a consistent version for the users:
<File title=".tool-versions">
<pre>
<code>
atmos <LatestRelease />
</code>
</pre>
</File>

Then, run `asdf install` in the same directory.

__NOTE:__ Don't have `asdf`? Install it first from [here](https://asdf-vm.com/guide/getting-started.html)
</TabItem>

<TabItem value="mise" label="Mise">
#### Install with Mise

Install a specified version:

```shell
mise use atmos@<LatestRelease />
```

Alternatively, create a `.mise.toml` file in your repository to specify a consistent version for the users:
<File title=".mise.toml">
<pre>
<code>
[tools]
atmos = '<LatestRelease />'
</code>
</pre>
</File>

Then, run `mise install` in the same directory.

__NOTE:__ Don't have `mise`? Install it first from [here](https://mise.jdx.dev/getting-started.html)
</TabItem>

<TabItem value="source" label="From Source">
#### Build from Source

Expand Down

0 comments on commit 64319be

Please sign in to comment.