1、Rovo Dev CLI注册https://www.atlassian.com/solutions/devops/ai-innovation
2、安装过程:可打开查看
- Install ACLI (or update to the latest version if you already have ACLI installed) using instructions for your OS:
3、windows安装
1)下载最新版本:
x86-64:
Invoke-WebRequest -Uri https://acli.atlassian.com/windows/latest/acli_windows_amd64/acli.exe -OutFile acli.exe
ARM64:
Invoke-WebRequest -Uri https://acli.atlassian.com/windows/latest/acli_windows_arm64/acli.exe -OutFile acli.exe
2)确实是否下载成功:
在powershell下运行:.\acli.exe –help
- 获取API KEY Atlassian profile.
- 然后run登录:
- .\
acli rovodev auth login
- 输入注册的邮箱,粘贴申请的API KEY
- 然后开启acli:
.\acli rovodev run
linux安装(debain系统&ubanue系统)
1、安装环境
sudo apt-get install -y wget gnupg2
2、安装和给权限
1)sudo mkdir -p -m 755 /etc/apt/keyrings
2)wget -nv -O- https://acli.atlassian.com/gpg/public-key.asc | sudo gpg --dearmor -o /etc/apt/keyrings/acli-archive-keyring.gpg
3)sudo chmod go+r /etc/apt/keyrings/acli-archive-keyring.gpg
4)echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/acli-archive-keyring.gpg] https://acli.atlassian.com/linux/deb stable main" | sudo tee /etc/apt/sources.list.d/acli.list > /dev/null
3、安装ACLI
sudo apt update
sudo apt install -y acli