Install

Install the CLI tool for remotely managing your Athene Server.

Linux
curl -fsSL  https://lnk.ink/gwhSQ  | bash
macOS
curl -fsSL  https://lnk.ink/gwhSQ  | bash
Windows
$d=Join-Path $env:LOCALAPPDATA "athene\bin"; New-Item -Force -ItemType Directory $d | Out-Null; Invoke-WebRequest -Uri "https://sshtools-public.s3.eu-west-1.amazonaws.com/athene/current/athene-windows-x64.zip" -OutFile "$env:TEMP\athene.zip"; Expand-Archive -Force "$env:TEMP\athene.zip" $d; $userPath=[Environment]::GetEnvironmentVariable("Path","User"); if ([string]::IsNullOrWhiteSpace($userPath)) { $userPath="" }; if (-not (($userPath -split ";") -contains $d)) { [Environment]::SetEnvironmentVariable("Path", ($userPath.TrimEnd(";") + ";" + $d).TrimStart(";"), "User") }; if (-not (($env:Path -split ";") -contains $d)) { $env:Path=($env:Path.TrimEnd(";") + ";" + $d).TrimStart(";") }

Login

Login to this server.

athene login https://athene.jadaptive.com

Go!

Setup repositories, Consume packages, Publish your own or manage this server.

  • Publish packages with Import or athene <type> import <repository> <package>.
  • Locate Packages with Search, athene find or explore the file tree with Browse.
  • Check on server health and summarise contents with Stats or athene stats.
  • Change Athene behaviour using Config or athene config.