uncloud-cli/README.md

26 lines
569 B
Markdown
Raw Normal View History

2019-12-02 17:37:14 +00:00
# ucloud-cli
Command line utility to interact with ucloud server.
2019-12-02 17:37:14 +00:00
## Installation
### From Source
```sh
pip3 install git+https://code.ungleich.ch/ucloud/ucloud-cli.git@master
```
### From PyPi
Coming Soon..
## Configuration
2019-12-02 18:18:48 +00: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.
```sh
cat > ~/.ucloud.conf <<EOF
UCLOUD_API_SERVER=http://localhost:5000
2019-12-02 18:18:48 +00:00
OTP_NAME=my_otp_name
OTP_REALM=my_otp_realm
OTP_SEED=my_otp_seed
EOF
```