Atuin Shell同步工具
小于 1 分钟
Atuin Shell同步工具
- 同步,搜索和备份shell历史
- 官方文档
server私有化部署-Docker容器
- 依赖Postgres数据库参考Postgres-Docker快速部署
## 镜像
## 18.0.1可变,可选择为最新的Release版本
docker pull ghcr.io/ellie/atuin:18.0.1
## 容器配置文件
## /mypath/config/server.toml
# host = "0.0.0.0"
# port = 8888
# open_registration = true
# db_uri="postgres://user:password@host/dbname"
## 启动
## -e ATUIN_CONFIG_DIR:/config
docker run -itd \
--name atuin-server \
-p 18888:8888 \
-v /mypath/config:/config \
ghcr.io/atuinsh/atuin:<LATEST TAGGED RELEASE> server start
# 测试
curl http://localhost:18888
# {"homage":"\"Through the fathomless deeps of space swims the star turtle Great A'Tuin, bearing on its back the four giant elephants who carry on their shoulders the mass of the Discworld.\" -- Sir Terry Pratchett","version":"18.0.1","total_history":-1}
客户端
安装
# iterm2 zsh
bash <(curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh)
配置
# 安装完成后默认目录
## 配置:~/.config/atuin/
## 本地数据:~/.local/share/atuin
# 修改为自己的同步服务器
## sync_address
vim ~/.config/atuin/config.toml
# 重新加载shell或 source ~/.zshrc
# 注册账号 观察postgres user表是否有数据
atuin register -u <YOUR_USERNAME> -e <YOUR EMAIL>
# 登录账号
## 需要输入key,直接回车,使用本地key /Users/$USER/.local/share/atuin/key
atuin login
# 开始同步 观察postgres history表是否有数据
atuin sync
# 在其他电脑客户端登录 需要输入key 可查看 /Users/$USER/.local/share/atuin/key
## 注意备份保存