2019-12-02 22:37:14 +05:00
# ucloud-cli
2019-12-02 23:18:07 +05:00
Command line utility to interact with ucloud server.
2019-12-02 22:37:14 +05:00
## Installation
2019-12-02 23:18:07 +05:00
### From Source
```sh
pip3 install git+https://code.ungleich.ch/ucloud/ucloud-cli.git@master
```
### From PyPi
Coming Soon..
## Configuration
2019-12-02 23:18:48 +05:00
Make sure to edit the value for `UCLOUD_API_SERVER` below to the URL where your intended ucloud api server is running and of `OTP_NAME` , `OTP_REALM` , `OTP_SEED` to your actual OTP credentials.
2019-12-02 23:18:07 +05:00
```sh
cat > ~/.ucloud.conf <<EOF
UCLOUD_API_SERVER=http://localhost:5000
2019-12-02 23:18:48 +05:00
OTP_NAME=my_otp_name
OTP_REALM=my_otp_realm
OTP_SEED=my_otp_seed
2019-12-02 23:18:07 +05:00
EOF
```