Skip to content

Commit

Permalink
Retrieve cli argument from envvar again (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan authored Mar 21, 2022
1 parent 707686c commit 66ad567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct Arguments {
wasm_dir: PathBuf,

/// Web-socket endpoint of the Fiberplane API (leave path empty to use the default path)
#[clap(long, short, default_value = "wss://fiberplane.com")]
#[clap(long, short, env, default_value = "wss://fiberplane.com")]
fiberplane_endpoint: Url,

/// Token used to authenticate against the Fiberplane API. This is created through the CLI by running the command: `fp proxy add`
Expand Down

0 comments on commit 66ad567

Please sign in to comment.