diff options
author | bryan newbold <bnewbold@robocracy.org> | 2023-03-04 16:48:20 -0800 |
---|---|---|
committer | bryan newbold <bnewbold@robocracy.org> | 2023-03-04 16:48:20 -0800 |
commit | a16558ed05428661936c317c0da15bd07eeaaba1 (patch) | |
tree | 45e145f727b8accab2e3a4582d8d475fb0abc0f1 /adenosine-cli/src/bin/adenosine.rs | |
parent | 6c44f0ee841fe1bf84a8a299e0bf78a01e84f03a (diff) | |
download | adenosine-a16558ed05428661936c317c0da15bd07eeaaba1.tar.gz adenosine-a16558ed05428661936c317c0da15bd07eeaaba1.zip |
cli: ATP_PDS_HOST as env var
Diffstat (limited to 'adenosine-cli/src/bin/adenosine.rs')
-rw-r--r-- | adenosine-cli/src/bin/adenosine.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/adenosine-cli/src/bin/adenosine.rs b/adenosine-cli/src/bin/adenosine.rs index ae03a2c..b031353 100644 --- a/adenosine-cli/src/bin/adenosine.rs +++ b/adenosine-cli/src/bin/adenosine.rs @@ -24,11 +24,11 @@ struct Opt { /// HTTP(S) URL of Personal Data Server to connect to #[structopt( global = true, - long = "--host", - env = "ATP_HOST", + long = "--pds-host", + env = "ATP_PDS_HOST", default_value = "http://localhost:2583" )] - atp_host: String, + pds_host: String, /// Authentication session token (JWT), for operations that need it #[structopt( @@ -333,7 +333,7 @@ fn require_auth_did(opt: &Opt, xrpc_client: &mut XrpcClient) -> Result<Did> { fn run(opt: Opt) -> Result<()> { let mut xrpc_client = XrpcClient::new( - opt.atp_host.clone(), + opt.pds_host.clone(), opt.auth_token.clone(), opt.admin_password.clone(), )?; @@ -347,7 +347,7 @@ fn run(opt: Opt) -> Result<()> { let result = match opt.cmd { Command::Status => { println!("Configuration"); - println!(" ATP_HOST: {}", opt.atp_host); + println!(" ATP_PDS_HOST: {}", opt.pds_host); if opt.auth_token.is_some() { println!(" ATP_AUTH_TOKEN: <configured>"); } else { |