atuin

(★ 31,358)

✨ Making your shell magical

  • .codespellrc
  • .dockerignore
  • .editorconfig
  • .fossier.db
  • .gitattributes
  • .gitignore
  • .mailmap
  • .nvim.lua
  • .rustfmt.toml
  • .vale.ini
  • AGENTS.md
  • atuin.nix
  • atuin.plugin.zsh
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • cliff.toml
  • clippy.toml
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • CONTRIBUTORS
  • Cross.toml
  • default.nix
  • demo.gif
  • deny.toml
  • depot.json
  • dist-workspace.toml
  • Dockerfile
  • flake.lock
  • flake.nix
  • fossier.toml
  • install.sh
  • LICENSE
  • README.md
  • rust-toolchain.toml
  • SECURITY.md
  • VOUCHED.td

# Installation Guide

1. Get the code
git clone https://github.com/atuinsh/atuin

Downloads the entire project code from GitHub to your computer.

cd atuin

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh

Downloads and runs the official install script in one line — this handles the full setup automatically.

After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t atuin .

Builds a runnable image based on the Dockerfile.

docker run -p 8080:80 atuin

Runs the built image as an actual container.

Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

4. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo build --release

Compiles the Rust project.

cargo run

Builds and then immediately runs the program.

If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation