shincloud-cli 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -31
- package/dist/index.js +1622 -255
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,31 +1,38 @@
|
|
|
1
|
-
# shincloud-cli
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## インストール
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install -g shincloud-cli
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## クイックスタート
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# APIキーを設定
|
|
15
|
-
shincloud auth login
|
|
16
|
-
|
|
17
|
-
# サーバー情報を取得
|
|
18
|
-
shincloud server info
|
|
19
|
-
|
|
20
|
-
#
|
|
21
|
-
shincloud
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
# shincloud-cli
|
|
2
|
+
|
|
3
|
+
シンクラウドのレンタルサーバー / ドメインをターミナルから操作するための公式 CLI ツール。
|
|
4
|
+
|
|
5
|
+
## インストール
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g shincloud-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## クイックスタート
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# APIキーを設定
|
|
15
|
+
shincloud auth login
|
|
16
|
+
|
|
17
|
+
# サーバー情報を取得
|
|
18
|
+
shincloud server info
|
|
19
|
+
|
|
20
|
+
# ドメインサービスAPI
|
|
21
|
+
shincloud domain list
|
|
22
|
+
shincloud domain check example.com
|
|
23
|
+
shincloud domain register example.com --years 1 --agree-to-terms --expected-total-price 1721 --dry-run
|
|
24
|
+
|
|
25
|
+
# 利用可能なコマンドを表示
|
|
26
|
+
shincloud --help
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
課金を伴うドメイン操作(`register` / `transfer` / `renew`)は、まず `--dry-run` で金額を確認し、実申請時は `--confirm-purchase` が必要です(`--yes` では省略できません)。実申請では対話端末(TTY)で確認文字列(`<domain> を税込<yen>円で承認`)の手入力が必須です。非TTY環境や `--yes` では実申請できません。
|
|
30
|
+
|
|
31
|
+
## ドキュメント
|
|
32
|
+
|
|
33
|
+
- [シンクラウドアカウント CLI リファレンス](https://developer.shin-server.jp/cli/server/)
|
|
34
|
+
- [更新履歴](https://developer.shin-server.jp/changelog/)
|
|
35
|
+
|
|
36
|
+
## ライセンス
|
|
37
|
+
|
|
38
|
+
MIT
|